Skip to content

Instantly share code, notes, and snippets.

@zacharycarter
Created December 11, 2018 14:18
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 zacharycarter/bde2ea52c99be079214ff6e374ce38c5 to your computer and use it in GitHub Desktop.
Save zacharycarter/bde2ea52c99be079214ff6e374ce38c5 to your computer and use it in GitHub Desktop.
var a = 1
proc foo() =
if a + 1 == 2:
goto bar
elif: a + 1 == 3:
# do something else
elif: a - 1 == 0:
goto bar
bar:
echo "in bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment