Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evgeniyasti/6e79546fef57830e2eaeb4da9f226763 to your computer and use it in GitHub Desktop.
Save evgeniyasti/6e79546fef57830e2eaeb4da9f226763 to your computer and use it in GitHub Desktop.
fun f() {
var x = 0
g(x)
// I need x to be 1 at this point
}
fun g(x : Int) {
x = 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment