Removed !

This commit is contained in:
rajanand ilangovan 2016-02-06 00:00:12 +05:30
parent 476de3289d
commit 71e503325e

View File

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