Skip to content

Instantly share code, notes, and snippets.

@bsolomon1124
Created April 29, 2020 12:35
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 bsolomon1124/e8e89b9e2370d9ecc92c3b3da95380cf to your computer and use it in GitHub Desktop.
Save bsolomon1124/e8e89b9e2370d9ecc92c3b3da95380cf to your computer and use it in GitHub Desktop.
function greet(person: string) {
return "Hello, " + person;
}
console.log(greet("you"));
console.log(greet([1, 2, 3]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment