Skip to content

Commit

Permalink
testing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
patinthehat authored and Patrick committed Feb 13, 2021
1 parent 786c8ef commit cebaea0
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions build/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,35 @@ const usleep = (milliseconds) => {
while (new Date().getTime() < start + (milliseconds)) {}
};

async function main() {
class TestOne {
abc() {
this.def();
}

def() {
this.ghi();
}

ghi() {
ray('hello').blue();
const closure = () => {
ray().trace();
};

closure();
}
}

async function main() {

ray('test');

await ray().pause();
ray('hello world 3!').green();

ray().xml('<one><two><three>3333</three></two></one>');
//ray().table(['one', 'two', 'three', 'four']);

ray('hello world 3!').green();
const myclass = new TestOne();

ray().table(['one', 'two', 'three', 'four']);
myclass.abc();

}

Expand Down

0 comments on commit cebaea0

Please sign in to comment.