aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-11-17Update READMEBruce Hill
2024-11-17Update docsBruce Hill
2024-11-17Rename datetime -> momentBruce Hill
2024-11-17Tweak hash functionBruce Hill
2024-11-17Add 'unless' as an alias for 'if not'Bruce Hill
2024-11-12Fix up recursive pointer text representationBruce Hill
2024-11-12Fixes for 'if' blocks with nested 'else if' that declare variablesBruce Hill
2024-11-09Bugfix for pointer iterationsBruce Hill
2024-11-09Support iterating over pointers to collections againBruce Hill
2024-11-09Make the compiler stricter about not promoting local value variables toBruce Hill
2024-11-09Bugfix integer literal demotion in assignment statementsBruce Hill
2024-11-09Bugfix for fixed-size integer rangesBruce Hill
2024-11-09Introduce a `Match` struct to represent pattern matching results, whichBruce Hill
2024-11-09Rename `from_text()` to `parse()`Bruce Hill
2024-11-08Improve reductions so they work better nested and also have bespoke codeBruce Hill
2024-11-07Bugfix for parsing empty method call namesBruce Hill
2024-11-07Fix up some stuff with boolean operators and reductionsBruce Hill
2024-11-05Add byte hex testsBruce Hill
2024-11-05Add Byte.hex()Bruce Hill
2024-11-05Fix up old-style reducersBruce Hill
2024-11-05Deprecate bit-width integer/num literals in favor of using typeBruce Hill
2024-11-04Be much more permissive about using integer literals for fixed-size intsBruce Hill
2024-11-04Minor code cleanupBruce Hill
2024-11-04Fix for blocking readsBruce Hill
2024-11-04Add base64 libBruce Hill
2024-11-04Fix for optional langsBruce Hill
2024-11-04Update text API to use optional returns when applicableBruce Hill
2024-11-04Add some missing functionality for BytesBruce Hill
2024-11-03RNG seed should be non-optionalBruce Hill
2024-11-03Fix up test to use RNGsBruce Hill
2024-11-03Add RNGs to the languageBruce Hill
2024-11-03Update Path:read_bytes() API to take a byte countBruce Hill
2024-11-03Fix per-thread RNGBruce Hill
2024-11-03Make Int.random() use thread-local stateBruce Hill
2024-11-03Use an RNG parameter for array:random(), array:shuffle(),Bruce Hill
2024-11-03Clean up behavior and syntax for unsigned bit shifts (<<<, >>>)Bruce Hill
2024-11-03Add unsigned integer shiftsBruce Hill
2024-11-03Add Int64:unsigned_left_shift() and :unsigned_right_shift()Bruce Hill
2024-11-03Better error messaging for binops and support for bit shifting by anBruce Hill
2024-11-03Add wrapping plus/minus for fixed-size integersBruce Hill
2024-11-03Fix error messageBruce Hill
2024-11-03Add a `repeat` keywordBruce Hill
2024-11-03Minor fixBruce Hill
2024-11-02Support reductions for comparison operators like == and <Bruce Hill
2024-11-02Change reducers to use (OP: ...) syntax and return an optional valueBruce Hill
2024-11-02Update headerBruce Hill
2024-11-02Make Text:find() return an optional intBruce Hill
2024-10-31Remove unused args for end_test()Bruce Hill
2024-10-31Tweak doctest output so it outputs source infoBruce Hill
2024-10-30Fix type members not appearing in headers for declared valuesBruce Hill