Created
April 11, 2020 01:29
-
-
Save lucacasonato/fe3b47180872928b29551a806ca148fd to your computer and use it in GitHub Desktop.
Simple example for https://github.com/denoland/doc_website/issues/61
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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