Skip to content

Instantly share code, notes, and snippets.

@HyunSeob
Created October 2, 2016 09:54
Show Gist options
  • Save HyunSeob/1da161eee28fad5fc0b464df521cc543 to your computer and use it in GitHub Desktop.
Save HyunSeob/1da161eee28fad5fc0b464df521cc543 to your computer and use it in GitHub Desktop.
TypeScript: Basic Type
function echo(param: string): string {
return param;
}
const name: string = 'HyunSeob';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment