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/metamethods.tm | |
| parent | 59845e610f2c90474f34079d27b5f1e07071ded4 (diff) | |
Change method calls to use `foo.baz()` instead of `foo:baz()`
Diffstat (limited to 'test/metamethods.tm')
| -rw-r--r-- | test/metamethods.tm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/metamethods.tm b/test/metamethods.tm index 5566b4e9..aac37c4b 100644 --- a/test/metamethods.tm +++ b/test/metamethods.tm @@ -53,7 +53,7 @@ func main(): = Vec2(x=-90, y=-180) >> x * y = Vec2(x=1000, y=4000) - >> x:dot(y) + >> x.dot(y) = 5000 >> x * -1 = Vec2(x=-10, y=-20) |
