Skip to content

Instantly share code, notes, and snippets.

@lucacasonato
Created April 11, 2020 01:29
Show Gist options
  • Save lucacasonato/fe3b47180872928b29551a806ca148fd to your computer and use it in GitHub Desktop.
Save lucacasonato/fe3b47180872928b29551a806ca148fd to your computer and use it in GitHub Desktop.
export function greeter(name?: string) {
console.log("Hello" + (name ? " " + name : "") + "!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment