From 07e325985066e97226482519aa4ed30b98a6fc1f Mon Sep 17 00:00:00 2001 From: bogamedia Date: Sun, 17 Jun 2018 13:50:21 -0600 Subject: [PATCH] Update getting-started-with-scala-in-intellij.md --- .../getting-started-with-scala-in-intellij.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/getting-started-intellij-track/getting-started-with-scala-in-intellij.md b/getting-started-intellij-track/getting-started-with-scala-in-intellij.md index ea7027178d..6a555ba411 100644 --- a/getting-started-intellij-track/getting-started-with-scala-in-intellij.md +++ b/getting-started-intellij-track/getting-started-with-scala-in-intellij.md @@ -55,7 +55,8 @@ A good way to try out code samples is with Scala Worksheets 1. In the project pane on the left, right click `src` and select **New** => **Scala Worksheet**. -1. Enter the following code into the worksheet: +2. Name your new Scala worksheet "Mathematician". +3. Enter the following code into the worksheet: ``` def square(x: Int) = x * x