From 2bb2ff871fa1761478442bec5f6a32c9428360a1 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 6 Apr 2025 14:20:18 -0400 Subject: Change method calls to use `foo.baz()` instead of `foo:baz()` --- test/bytes.tm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/bytes.tm') 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" -- cgit v1.2.3