diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-11-05 15:18:32 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-11-05 15:18:32 -0500 |
| commit | b8d7eabc023bf9db0150049d8e909086f6ad91bc (patch) | |
| tree | 5b678c7949638b3f07095affc04611f0422ef8c7 /test/bytes.tm | |
| parent | 2fa26e6af3ec1599396d9260ef44b0d035b1f686 (diff) | |
Deprecate bit-width integer/num literals in favor of using type
constructors
Diffstat (limited to 'test/bytes.tm')
| -rw-r--r-- | test/bytes.tm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/bytes.tm b/test/bytes.tm index 4db94930..be6d1cdd 100644 --- a/test/bytes.tm +++ b/test/bytes.tm @@ -1,8 +1,8 @@ func main(): !! Test bytes: - >> 100[B] - = 100[B] + >> Byte(100) + = Byte(0x64) - >> 0xFF[B] - = 255[B] + >> Byte(0xFF) + = Byte(0xFF) |
