Added simple "Math" library.
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
IO.print(Math.floor(2.3)) // expect: 2
|
||||
IO.print(Math.floor(3.8)) // expect: 3
|
||||
IO.print(Math.floor(-2.3)) // expect: -3
|
||||
IO.print(Math.floor(-3.8)) // expect: -4
|
||||
Reference in New Issue
Block a user