blob: 3c4b339566921dd09f75564be56b3b3a17dc0dc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
"use strict";
load("ast.js");
load("basic.js");
load("caseless_map.js");
load("lexer.js");
load("number.js");
load("parser.js");
load("random.js");
load("state.js");
load("util.js");
load("benchmark.js");
let result = runBenchmark();
print("That took " + result + " ms.");
|