rkgk/crates
リキ萌 ec7ee9626f implement . and | operators
`f . x` is the same as `f x`, and is mostly useful when used as an argument to another function call.
this allows us to simulate record field syntax very well: `d.Num` is the same as `d Num`, but with high precedence

`a |f b` is the same as `f a b` and effectively allows you to turn any function into an arithmetic operator.
it's the main reason behind + - * / having the same precedence---they now chain very nicely with pipes

closes #126 (`|` operator)
closes #127 (`.` operator)
2025-09-02 22:06:16 +02:00
..
haku implement . and | operators 2025-09-02 22:06:16 +02:00
haku-wasm fix a few bugs with the new precedence rules 2025-09-02 20:03:41 +02:00
haku2 h2: fix implementation of Value.gt not actually being a greater-than operation 2025-09-02 20:52:25 +02:00
rkgk remove unused functions 2025-09-01 17:18:20 +02:00
rkgk-image-ops removing server-side brush rendering 2025-06-30 18:55:53 +02:00