Added simple "Math" library.

This commit is contained in:
Marco Lizza
2015-01-22 16:41:19 +01:00
parent 9453acf1e6
commit 6df15f209a
10 changed files with 206 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
Math.srand
for (i in 1..10) {
IO.print(Math.floor(Math.rand * 100))
}