Skip to content

Instantly share code, notes, and snippets.

@ikovalyov
Last active March 29, 2020 13:53
Show Gist options
  • Save ikovalyov/c699951c900c473c313494358b37c1d6 to your computer and use it in GitHub Desktop.
Save ikovalyov/c699951c900c473c313494358b37c1d6 to your computer and use it in GitHub Desktop.
var a = 0
fun counter() {
a++
println(a)
}
fun main() {
counter()
counter()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment