aboutsummaryrefslogtreecommitdiff
path: root/test/bytes.tm
blob: f9a872dc1f1de426d601173f3b02ccdb3ab689c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

func main():
    !! Test bytes:
    >> Byte(100)
    = 0x64

    >> Byte(0xFF)
    = 0xFF

    >> b := Byte(0x0F)
    >> b:hex()
    = "0F"
    >> b:hex(prefix=yes)
    = "0x0F"
    >> b:hex(uppercase=no)
    = "0f"