Last active
April 8, 2021 14:00
-
-
Save soudmaijer/e8e1bc5753867a678cd81b0a234b5ae1 to your computer and use it in GitHub Desktop.
Exercise11.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main() { | |
val houseNumber = "121" | |
val nextHouseNumber = houseNumber + 1 | |
println(nextHouseNumber) // should print 122 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment