Skip to content

Instantly share code, notes, and snippets.

@maiah
Created August 19, 2013 09:32
Show Gist options
  • Save maiah/6267321 to your computer and use it in GitHub Desktop.
Save maiah/6267321 to your computer and use it in GitHub Desktop.
LLJS sample typed-function
function int add(int a, int b) {
return a + b;
}
let int sum = add(5, 7);
trace('sum = ' + sum);
@maiah
Copy link
Author

maiah commented Aug 19, 2013

I dream of having this in native javascript

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment