surrealpatch/lib
Tobie Morgan Hitchcock 03af33796a Fix arithmetic and boolean binary expression order
Previously the expression operations happened right-to-left so `1 - 2 - 3 - 4 - 5` was actually calculated as `(1 - (2 - (3 - (4 - (5)))))`.  Now the expressions are calculated according to BODMAS, with boolean expressions calculated last.
2022-03-13 00:18:23 +00:00
..
src Fix arithmetic and boolean binary expression order 2022-03-13 00:18:23 +00:00
Cargo.toml Implement record storing and fetching 2022-03-07 18:11:44 +00:00