Skip to content

Instantly share code, notes, and snippets.

@WesleySmits
Created October 10, 2021 10:54
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 WesleySmits/fc8c8c3c70cbc86861af467c4d1d0a0d to your computer and use it in GitHub Desktop.
Save WesleySmits/fc8c8c3c70cbc86861af467c4d1d0a0d to your computer and use it in GitHub Desktop.
TS Starter: Add sum function to app.ts
export default function sum(a: number, b: number): number {
return a + b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment