1
0
forked from Mirror/wren
Files
wren/test/core/string/from_byte.wren

4 lines
167 B
Plaintext
Raw Normal View History

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