diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-04-06 14:20:18 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-04-06 14:20:18 -0400 |
| commit | 2bb2ff871fa1761478442bec5f6a32c9428360a1 (patch) | |
| tree | 9b73df7a0c50c02353ae7bca7c2cd54788ef0077 /test/bytes.tm | |
| parent | 59845e610f2c90474f34079d27b5f1e07071ded4 (diff) | |
Change method calls to use `foo.baz()` instead of `foo:baz()`
Diffstat (limited to 'test/bytes.tm')
| -rw-r--r-- | test/bytes.tm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/bytes.tm b/test/bytes.tm index a62acd10..862d2674 100644 --- a/test/bytes.tm +++ b/test/bytes.tm @@ -8,9 +8,9 @@ func main(): = Byte(0xFF) >> b := Byte(0x0F) - >> b:hex() + >> b.hex() = "0F" - >> b:hex(prefix=yes) + >> b.hex(prefix=yes) = "0x0F" - >> b:hex(uppercase=no) + >> b.hex(uppercase=no) = "0f" |
