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 yorickpeterse/c162e5184a1f14c50f3d47ea65afe552 to your computer and use it in GitHub Desktop.
Save yorickpeterse/c162e5184a1f14c50f3d47ea65afe552 to your computer and use it in GitHub Desktop.
def add(Integer left, Integer right) -> Integer:
return __integer_add(left, right)
def print(String message) -> Integer:
return __stdout_write(message)
def int_to_string(Integer int) -> String:
return __integer_to_string(int)
let a = 10
let b = 20
let sum = add(a, b)
print(int_to_string(sum))
print("\n")
# vim: set ft=aeon sts=2 sw=2 ts=2:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment