Skip to content

Instantly share code, notes, and snippets.

@igorcardozo
Last active November 15, 2020 23:50
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 igorcardozo/1bd29335afdaa948ba603009d6e4785c to your computer and use it in GitHub Desktop.
Save igorcardozo/1bd29335afdaa948ba603009d6e4785c to your computer and use it in GitHub Desktop.
function sum(a: number, b: number): number {
return a+b;
}
console.log(sum(2,2));
console.log(sum("hello", "there"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment