forked from Mirror/wren
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
|