From 33c19e044dd147a6f16a4a85660955e153cef75f Mon Sep 17 00:00:00 2001 From: A-Roso <60855900+A-Roso@users.noreply.github.com> Date: Mon, 6 Dec 2021 17:14:40 +0100 Subject: [PATCH] taste-repl.md added 'scala3'-command to start REPL Added 'scala3' as command to start REPL as only 'scala' doesn't work depending on the installation (e.g. with Coursier on Windows 10). --- _overviews/scala3-book/taste-repl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala3-book/taste-repl.md b/_overviews/scala3-book/taste-repl.md index dba5420401..50820b473f 100644 --- a/_overviews/scala3-book/taste-repl.md +++ b/_overviews/scala3-book/taste-repl.md @@ -9,7 +9,7 @@ next-page: taste-vars-data-types The Scala REPL (“Read-Evaluate-Print-Loop”) is a command-line interpreter that you use as a “playground” area to test your Scala code. -You start a REPL session by running the `scala` command at your operating system command line, where you’ll see a “welcome” prompt like this: +You start a REPL session by running the `scala` or `scala3` command depending on your installation at your operating system command line, where you’ll see a “welcome” prompt like this: ```bash $ scala