Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created March 21, 2019 13:17
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 goofmint/a5af1e17e1f03c037770e7982c78a67c to your computer and use it in GitHub Desktop.
Save goofmint/a5af1e17e1f03c037770e7982c78a67c to your computer and use it in GitHub Desktop.
export function add(x: i32, y: i32): i32 {
return x + y;
}
export function minus(x: i32, y: i32): i32 {
return x - y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment