--- a/cws/core_cw01.tex Fri Nov 14 10:57:21 2025 +0000
+++ b/cws/core_cw01.tex Fri Nov 14 11:14:43 2025 +0000
@@ -33,7 +33,7 @@
\noindent
In addition, the Scala coursework comes with a reference implementation
in form of a \texttt{jar}-file. This allows you to run any test cases on
-your own computer. For example you can call \texttt{scala-cli} on the command line
+your own computer. For example you can call \texttt{scala} on the command line
with the option \texttt{--extra-jars collatz.jar} and then query any function
from the template file. Say you want to find out what the functions
\texttt{collatz} and \texttt{collatz\_max} produce: for this you just
@@ -42,7 +42,7 @@
would type something like:
\begin{lstlisting}[language={},numbers=none,basicstyle=\ttfamily\small]
-$ scala-cli --extra-jars collatz.jar
+$ scala --extra-jars collatz.jar
scala> C1.collatz(6)
...