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