Skip to content

Instantly share code, notes, and snippets.

@InterestingBrainPoops
Created May 10, 2021 00:38
Show Gist options
  • Save InterestingBrainPoops/2c0f882b1d6b09b73c90395cd4aaf334 to your computer and use it in GitHub Desktop.
Save InterestingBrainPoops/2c0f882b1d6b09b73c90395cd4aaf334 to your computer and use it in GitHub Desktop.
sample program that should theoretically work
main {
thing = 6 $ this is a comment
a = 2 $ int by default.
print thing $ by default all programs have access to this function.
thing += a thing $ thing = a + thing
print thing $ prints the new thing (should be 8)
drop thing $ thing is no longer usable after this point
drop a $ same thing w/ this one.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment