Skip to content

Instantly share code, notes, and snippets.

@Luna-Klatzer
Last active June 26, 2023 14:01
Show Gist options
  • Save Luna-Klatzer/683d240e274e3ef1a209561e0dea7d15 to your computer and use it in GitHub Desktop.
Save Luna-Klatzer/683d240e274e3ef1a209561e0dea7d15 to your computer and use it in GitHub Desktop.
Simple Kipper program to add numbers
def add(firstNum: num, secondNum: num) -> num {
return firstNum + secondNum;
}
var result: num = add(1, 2);
print(result as str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment