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
Copy file name to clipboardExpand all lines: src/first_steps.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,9 +36,7 @@ IO.println("Hello, World!");
36
36
37
37
This bit of magic here - `IO.println` - is a "statement" that "prints" the text inside the `(` and `)` as well as a "new line" to the screen.
38
38
39
-
**print** with new **l**i**n**e.
40
-
41
-
The "`IO`" part stands for "Input/Output."
39
+
The "`IO`" part stands for "Input/Output" then it is **print** with new **l**i**n**e.
42
40
43
41
If you were to replace it with `IO.print`, then the output would lack that new line. This makes the following program be functionally identical to the first.
0 commit comments