1
0
forked from Mirror/wren
Files
wren/test/core/string/from_byte.wren
2019-02-27 08:10:54 -05:00

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