Skip to content

Instantly share code, notes, and snippets.

@jackmott
Created February 12, 2018 01:43
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 jackmott/1d1502bb7365e67af28b3503b1f0e4da to your computer and use it in GitHub Desktop.
Save jackmott/1d1502bb7365e67af28b3503b1f0e4da to your computer and use it in GitHub Desktop.
if expression
x :=
if foo {
do_stuff() // returns an int
} else if bar {
a := do_stuff()
print("stuff"
3*a
} else {
5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment