Skip to content

Instantly share code, notes, and snippets.

@codinginflow
Created February 15, 2021 02:01
Show Gist options
  • Save codinginflow/4e672fb1588032cc60bb9973da18804e to your computer and use it in GitHub Desktop.
Save codinginflow/4e672fb1588032cc60bb9973da18804e to your computer and use it in GitHub Desktop.
Kotlin for Beginners Part 4
fun main() {
val userName = "Florian"
var age = 28
println("Hello, world! My name is $userName. I am $age years old. In 2 years, I'll be ${age + 2}.")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment