10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 054fb9c commit a7e69afCopy full SHA for a7e69af
tutorials/tour/basics.md
@@ -12,6 +12,16 @@ previous-page: tour-of-scala
12
13
In this page, we will cover basics of Scala.
14
15
+## Running Scala on Browser
16
+
17
+You can run Scala on browser by using [ScalaFiddle](https://scalafiddle.io).
18
19
+1. Go to https://scalafiddle.io.
20
+2. Copy and paste `println("Hello, world!")` to the left pane.
21
+3. Hit "Run" button and see it prints "Hello, world!" on the right pane.
22
23
+It is a perfect way for anybody to experiment a piece of Scala code anywhere, anytime!
24
25
## Variables
26
27
You can define variables with `var` keyword.
0 commit comments