2015-01-22 21:32:46 +00:00
|
|
|
/// <reference path="Byte.ts" />
|
2015-01-23 19:46:23 +00:00
|
|
|
/// <reference path="LCD.ts" />
|
2015-01-22 21:32:46 +00:00
|
|
|
var TI = (function () {
|
|
|
|
function TI() {
|
|
|
|
}
|
|
|
|
TI.Init = function () {
|
2015-01-23 19:46:23 +00:00
|
|
|
LCD.Init();
|
2015-01-23 06:05:27 +00:00
|
|
|
var a = new Byte(10);
|
2015-01-22 21:32:46 +00:00
|
|
|
var b = new Byte(40);
|
2015-01-23 06:05:27 +00:00
|
|
|
//a.Add(b);
|
|
|
|
//a.Sub(b);
|
|
|
|
alert(a.Neg().Get());
|
2015-01-22 21:32:46 +00:00
|
|
|
};
|
|
|
|
return TI;
|
|
|
|
})();
|
2015-01-23 06:05:27 +00:00
|
|
|
//# sourceMappingURL=TI.js.map
|