You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scala CLI does not use complex configuration language, its options are simple and self-explanatory
69
+
Scala CLI does not use a complex configuration language, its options are simple and self-explanatory.
70
70
</p>
71
71
<p>
72
72
There are no big differences in running repl or .scala files so expanding the results of repl session into a small project does not require learning new concepts from Scala CLI perspective
@@ -75,16 +75,16 @@ const featuresList = [
75
75
<ImageBox
76
76
image="gifs/powerful_scripts.gif"title="Scripts are as powerful as other programs"key="scripts-as-apps"scripting="true">
77
77
<p>
78
-
Scripts in Scala CLI can use dependencies and other features as standard Scala programs. Scala CLI is command-line first giving access to all its features without need for any configuration file or specific project structure.
78
+
Scripts in Scala CLI can use dependencies and other features as standard Scala programs. Scala CLI is command-line first, giving access to all its features without the need for any configuration files or specific project structure.
Scala CLI can be set up in shebang lines, making your *.scala or *.sc files runnable
84
+
Scala CLI can be set up in shebang lines, making your *.scala or *.sc (or even .java or .md!) files runnable.
85
85
</p>
86
86
<p>
87
-
Scala CLI supports piping inputs and is designed to be embeddable in other scripts, turning Scala into proper scripting language
87
+
Scala CLI supports piping inputs and is designed to be embeddable in other scripts, turning Scala into proper scripting language.
88
88
</p>
89
89
</ImageBox>,
90
90
// <ImageBox
@@ -106,7 +106,7 @@ const featuresList = [
106
106
With Scala CLI, configuration can be included in source code so complex examples can be self-contained and shipped as e.g. gist. Moreover, Scala CLI can compile, run and test gists without any manual work!
107
107
</p>
108
108
<p>
109
-
Scala CLI is a perfect tool to submit and reproduce bugs
109
+
Scala CLI is the perfect tool to submit and reproduce bugs.
Copy file name to clipboardExpand all lines: website/src/pages/index.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,13 +35,13 @@ const Index = (props) => {
35
35
36
36
<SectionAbouttitle="Why Scala CLI?">
37
37
<p>
38
-
Scala CLI combines <em>all</em> the features you need to learn and use Scala in your scripts, playgrounds and (single-module) projects.
38
+
Scala CLI combines <em>all</em>of the features you need to learn and use Scala in your scripts, playgrounds and (single-module) projects.
39
39
</p>
40
40
<p>
41
41
To get started you can read <ahref="/docs/overview">the documentation</a>, or just <ahref="/install">install</a> and enjoy <code>scala-cli</code>.
42
42
</p>
43
43
<p>
44
-
Scala CLI will soon become the default Scala runner and will be shipped as `scala` (<ahref="https://virtuslab.com/blog/scala-cli-the-new-scala-runner/">read more</a>).
44
+
Scala CLI is the default Scala runner and is being shipped as <code>scala</code> along with <code>scalac</code> as part of the official language installation since <ahref="https://github.com/scala/scala3/releases/tag/3.5.0">Scala 3.5.0</a>. (<ahref="/docs/reference/scala-command/">read more</a>).
0 commit comments