top / index / prev / next / target / source
日記形式でつづる いがぴょんコラム ウェブページです。
とてもシンプルな TypeScript のサンプルをメモ。
npm を利用して TypeScript をインストールします。
sudo npm install -g typescript
/**
* SimpleSample.ts
*/
class SimpleSample {
sayHello() {
console.log("Hello world!");
}
}
new SimpleSample().sayHello();
tsc SimpleSample.ts
これにより SimpleSample.js が生成されます。
/**
* SimpleSample.ts
*/
var SimpleSample = /** @class */ (function () {
function SimpleSample() {
}
SimpleSample.prototype.sayHello = function () {
console.log("Hello world!");
};
return SimpleSample;
}());
new SimpleSample().sayHello();
実行方法
node SimpleSample.js
それの実行結果。
Hello world!
Last modified: $Date: 2018-04-13 $