aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Expand)Author
2025-04-06Improved inline C code: now uses `C_code` keyword and supportsBruce Hill
2025-04-06Allow uninitialized variables when there's a sensible empty valueBruce Hill
2025-04-06Insert `then` for clarityBruce Hill
2025-04-06Merge branch 'main' into no-colonsBruce Hill
2025-04-06Change Set syntax from {x} to |x|Bruce Hill
2025-04-06Minor test fixBruce Hill
2025-04-06No more colons for blocksBruce Hill
2025-04-06Re-implement multiple patterns for `when` blocksBruce Hill
2025-04-06Expand reducers so they support stuff like `(+.abs(): nums)` andBruce Hill
2025-04-06Change method calls to use `foo.baz()` instead of `foo:baz()`Bruce Hill
2025-04-06Deprecate `!!` print statementBruce Hill
2025-04-06Reword test for clarityBruce Hill
2025-04-05Fix up some tests and type_or_typeBruce Hill
2025-04-05Fix up testsBruce Hill
2025-04-05Fix up more thingsBruce Hill
2025-04-04Misc fixesBruce Hill
2025-04-04First working compile of refactor to add explicit typing to declarationsBruce Hill
2025-04-02Syntax change: table types are now: `{K=V; default=...}` and tablesBruce Hill
2025-04-01Moved RNG out of the compiler and into a standalone libraryBruce Hill
2025-04-01Move patterns into a moduleBruce Hill
2025-03-31Remove threads and mutexed data from the language in favor of aBruce Hill
2025-03-30Deprecate built-in Moment datatype in favor of a `time` moduleBruce Hill
2025-03-25Make docstring tests use an actual expression AST instead of textBruce Hill
2025-03-24Add num:percent()Bruce Hill
2025-03-21Add instructionsBruce Hill
2025-03-21Add readme for testsBruce Hill
2025-03-21Add version check for GNU MP's prev_prime()Bruce Hill
2025-03-17Add text width support and have that work for paddingBruce Hill
2025-03-16Remove enum type prefix when printing enumBruce Hill
2025-03-15Overhaul of Path so it uses root and array of components instead ofBruce Hill
2025-03-12Rename `without_escaping()` -> `from_text()`Bruce Hill
2025-03-11Remove some doctests where not neededBruce Hill
2025-03-10Add `convert` keyword for defining conversionsBruce Hill
2025-03-07Add text padding functions: :left_pad(), :right_pad(), :middle_pad()Bruce Hill
2025-03-07Fix for text uppercasing in testBruce Hill
2025-03-07Add proper language support for case operations on textBruce Hill
2025-03-06Add 'when' testBruce Hill
2025-03-05Overhaul of constructors, making it more consistent and correct. AlsoBruce Hill
2025-03-01Change `lang.text_content` to `lang.text`Bruce Hill
2025-03-01Support post-hoc definitions of escaping rules for DSLsBruce Hill
2025-02-19Switch to langs using constructorsBruce Hill
2025-02-13Deprecate Range datatype in favor of using iterator methodsBruce Hill
2025-02-07Bugfix and minor perf improvements for text concatenation with unstableBruce Hill
2025-01-12Change table syntax to `{key=value}` and `{:K,V}`/`{K,V}`Bruce Hill
2025-01-02Use `holding` blocks for mutexed data instead of lambdasBruce Hill
2025-01-02Replace threads with generic mutexed datastructures.Bruce Hill
2024-12-31Fix for heap_pop() test in arraysBruce Hill
2024-12-31Add array:pop()Bruce Hill
2024-12-26Add lang test for indexingBruce Hill
2024-12-26Add text indexingBruce Hill