Skip to content

Instantly share code, notes, and snippets.

@soudmaijer
Last active April 8, 2021 14:00
Show Gist options
  • Save soudmaijer/e8e1bc5753867a678cd81b0a234b5ae1 to your computer and use it in GitHub Desktop.
Save soudmaijer/e8e1bc5753867a678cd81b0a234b5ae1 to your computer and use it in GitHub Desktop.
Exercise11.kt
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