Files
wren/test/core/number/pow.wren
T

5 lines
125 B
Plaintext
Raw Normal View History

2016-10-31 17:22:13 -02:30
System.print(2.pow(4)) // expect: 16
System.print(2.pow(10)) // expect: 1024
System.print(1.pow(0)) // expect: 1