how to use typescript code example
Example 1: why use typescript
/* TypeScript adds several additional features to JavaScript.
The most important one is strict typing.
*/
Example 2: typescript tutorial
//Generated by typescript 1.8.10
var message = "Hello World";
console.log(message);