mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
5 lines
125 B
Plaintext
5 lines
125 B
Plaintext
System.print(2.pow(4)) // expect: 16
|
|
System.print(2.pow(10)) // expect: 1024
|
|
|
|
System.print(1.pow(0)) // expect: 1
|