Move to lib style, move scripts into their own directory, start source examples
This commit is contained in:
6
scripts/while.rhai
Normal file
6
scripts/while.rhai
Normal file
@@ -0,0 +1,6 @@
|
||||
var x = 10;
|
||||
|
||||
while x > 0 {
|
||||
print(x);
|
||||
x = x - 1;
|
||||
}
|
Reference in New Issue
Block a user