feat: globals.multiply

This commit is contained in:
cha0s 2019-04-21 01:30:32 -05:00
parent 658a75bc3e
commit a97494a1f7

View File

@ -5,6 +5,10 @@ import {Traversal} from '../item/traversal';
export class Globals {
multiply(x, y) {
return x * y;
}
log(any) {
console.log(any);
}