Last active
June 26, 2023 14:01
-
-
Save Luna-Klatzer/683d240e274e3ef1a209561e0dea7d15 to your computer and use it in GitHub Desktop.
Simple Kipper program to add numbers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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