Skip to content

Instantly share code, notes, and snippets.

@shahoob
Last active October 16, 2020 18:39
Show Gist options
  • Save shahoob/453c6938f3641a8fb0fcd404a2e0ca9d to your computer and use it in GitHub Desktop.
Save shahoob/453c6938f3641a8fb0fcd404a2e0ca9d to your computer and use it in GitHub Desktop.
Basic TypeScript Example: Greeter
export function greet(name: string) {
return `Hello ${name}`;
}
console.log(greet('Shehab'));
// Hello Shehab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment