Add a few examples

This commit is contained in:
jonathandturner
2016-03-01 21:36:46 -05:00
parent d8dd673459
commit 1320a35c81
10 changed files with 32 additions and 3 deletions

5
examples/speed_test.rhai Normal file
View File

@@ -0,0 +1,5 @@
var x = 1000000;
while x > 0 {
x = x - 1;
}
print(x);