Basilio/js/TI.ts

14 lines
233 B
TypeScript
Raw Normal View History

2015-01-22 21:32:46 +00:00
/// <reference path="Byte.ts" />
class TI {
static registers: any[];
static Init() {
var a = new Byte(10);
2015-01-22 21:32:46 +00:00
var b = new Byte(40);
//a.Add(b);
//a.Sub(b);
alert(a.Neg().Get());
2015-01-22 21:32:46 +00:00
}
}