mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
4 lines
167 B
Plaintext
4 lines
167 B
Plaintext
System.print(String.fromByte(65)) // expect: A
|
|
System.print(String.fromByte(0).bytes[0]) // expect: 0
|
|
System.print(String.fromByte(255).bytes[0]) // expect: 255
|