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
For more information, read [coursier-cli documentation](https://get-coursier.io/docs/cli-overview)
32
39
@@ -39,6 +46,9 @@ or [AdoptOpenJDK 8/11](https://adoptopenjdk.net/). Refer [JDK Compatibility](/ov
39
46
40
47
41
48
## Create a Hello-world project with sbt
49
+
To create a project, you can either use a command-line tool or an IDE.
50
+
If you are familiar with command-lines, we recommend to use the first approach.
51
+
42
52
### Using command-line
43
53
sbt is a build tool for Scala. sbt compiles, runs,
44
54
and tests your projects among other related tasks.
@@ -65,11 +75,13 @@ create a project called "hello-world".
65
75
More documentation about sbt can be found in the [Scala Book](/overviews/scala-book/scala-build-tool-sbt.html)
66
76
or in the official sbt [documentation](https://www.scala-sbt.org/1.x/docs/index.html)
67
77
68
-
### Without using the command line
78
+
### With an IDE
69
79
You can skip the rest of this page and go directly to [Building a Scala Project with IntelliJ and sbt](/getting-started/intellij-track/building-a-scala-project-with-intellij-and-sbt.html#next-steps)
70
80
71
81
72
82
## Open hello-world project
83
+
Let's use an IDE to open the project. The most popular ones are IntelliJ and VSCode.
84
+
They both offer rich IDE features, but you can still use [many other editors.](https://scalameta.org/metals/docs/editors/overview.html)
73
85
### Using IntelliJ
74
86
1. Download and install [IntelliJ Community Edition](https://www.jetbrains.com/idea/download/)
75
87
1. Install the Scala plugin by following [the instructions on how to install IntelliJ plugins](https://www.jetbrains.com/help/idea/managing-plugins.html)
0 commit comments