Skip to content

Instantly share code, notes, and snippets.

@Falieson
Last active May 31, 2018 21:21
Show Gist options
  • Save Falieson/40792a6f280662806ef5ea104405eaa9 to your computer and use it in GitHub Desktop.
Save Falieson/40792a6f280662806ef5ea104405eaa9 to your computer and use it in GitHub Desktop.
S2. F02. Init HelloWorld (ARTICLE: TS-Module w/ Declarations (Part 1/4))
/** TS-Module w/ Declarations (Part 1/4)
* http://TGRstack.com/#ts-module_articles_part-1
* ./src/HelloWorld.ts (Section 2. Figure 02.)
**/
function HelloWorldMaker(first: string, second: string): string {
return `${first} ${second}`
}
export default HelloWorldMaker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment