1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-05 14:27:51 +02:00

Merge pull request #2126 from rajanand/patch-1

Removed exclamation mark(!) from comment.
This commit is contained in:
ven
2016-02-05 22:35:59 +01:00

View File

@@ -48,7 +48,7 @@ println(10)
// Printing, without forcing a new line on next print
print("Hello world")
print(10)
// Hello world!10
// Hello world10
// Declaring values is done using either var or val.
// val declarations are immutable, whereas vars are mutable. Immutability is