Basilio/js/TI.ts
Alec Obradovich a98b4bb92b woah a code name
creativity at its finest
2015-01-23 00:05:27 -06:00

14 lines
233 B
TypeScript

/// <reference path="Byte.ts" />
class TI {
static registers: any[];
static Init() {
var a = new Byte(10);
var b = new Byte(40);
//a.Add(b);
//a.Sub(b);
alert(a.Neg().Get());
}
}