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/if1.rhai Normal file
View File

@@ -0,0 +1,5 @@
var a = true;
if (a) {
var x = 56;
print(x);
}