mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
Add IO class.
With io.write(), can start writing tests now.
This commit is contained in:
6
test/number_literals.wren
Normal file
6
test/number_literals.wren
Normal file
@ -0,0 +1,6 @@
|
||||
io.write(123) // expect: 123
|
||||
io.write(987654) // expect: 987654
|
||||
io.write(0) // expect: 0
|
||||
io.write(-0) // expect: 0
|
||||
|
||||
// TODO(bob): Floating point numbers.
|
||||
Reference in New Issue
Block a user