tomo/test/bytes.tm

17 lines
232 B
Plaintext
Raw Permalink Normal View History

2024-09-15 12:33:47 -07:00
2025-04-06 13:07:23 -07:00
func main()
2025-04-06 10:40:17 -07:00
say("Test bytes:")
>> Byte(100)
= Byte(0x64)
2024-09-15 12:33:47 -07:00
>> Byte(0xFF)
= Byte(0xFF)
2024-11-05 12:34:01 -08:00
>> b := Byte(0x0F)
>> b.hex()
2024-11-05 12:34:01 -08:00
= "0F"
>> b.hex(prefix=yes)
2024-11-05 12:34:01 -08:00
= "0x0F"
>> b.hex(uppercase=no)
2024-11-05 12:34:01 -08:00
= "0f"