Skip to content

Instantly share code, notes, and snippets.

@igorcardozo
Created November 16, 2020 00:32
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/5e2609c6918dff0806c99b6c5928e99a to your computer and use it in GitHub Desktop.
Save igorcardozo/5e2609c6918dff0806c99b6c5928e99a to your computer and use it in GitHub Desktop.
export function concatStrings(s1: string, s2: string, s3: string): string {
return s1+" "+s2+" "+s3;
}
export 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