Skip to content

Instantly share code, notes, and snippets.

@cruffenach
Created March 31, 2013 03:02
Show Gist options
  • Save cruffenach/5279335 to your computer and use it in GitHub Desktop.
Save cruffenach/5279335 to your computer and use it in GitHub Desktop.
Number add(Number a, Number b) {
return a + b;
}
void main() {
Number myAge = 26;
Number jamesAge = 28;
Number together = add(myAge, jamesAge);
Print("The combined age is " + together);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment