aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2025-04-26Add `--version` flag to show current compiler version's git commit dateBruce Hill
and hash
2025-04-25Update text docs for escapingBruce Hill
2025-04-21Deprecate REPLBruce Hill
2025-04-19Make API documentation into YAML files and autogenerate markdown filesBruce Hill
and manpages from those.
2025-04-18Fix docsBruce Hill
2025-04-18Fix docs syntaxBruce Hill
2025-04-17Add getenv()/setenv()Bruce Hill
2025-04-16Add Path.current_dir() as exposed methodBruce Hill
2025-04-07Add table.get_or_set()Bruce Hill
2025-04-07Remove table.bump()Bruce Hill
2025-04-07Add `is_between()` for various typesBruce Hill
2025-04-07Add placeholder docs for bytesBruce Hill
2025-04-06Update docsBruce Hill
2025-04-06Update syntax in docsBruce Hill
2025-04-06Rename Array -> List in all code and docsBruce Hill
2025-04-06Improved inline C code: now uses `C_code` keyword and supportsBruce Hill
interpolation with @
2025-04-06Change Set syntax from {x} to |x|Bruce Hill
2025-04-06Expand reducers so they support stuff like `(+.abs(): nums)` andBruce Hill
`(==.length: texts)`
2025-04-06Change method calls to use `foo.baz()` instead of `foo:baz()`Bruce Hill
2025-04-05Remove {} for empty setsBruce 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
and support untyped empty collections and `none`s
2025-04-02Syntax change: table types are now: `{K=V; default=...}` and tablesBruce Hill
use `{:K=V, ...; default=...}`
2025-04-02Remove patterns from text docsBruce Hill
2025-04-01Fix docsBruce Hill
2025-04-01Update array random docs and fix array random methods to check rangesBruce 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-31Update docsBruce Hill
2025-03-31Remove threads and mutexed data from the language in favor of aBruce Hill
module-based approach
2025-03-30Deprecate built-in Moment datatype in favor of a `time` moduleBruce Hill
2025-03-30Further support for .dylib files on mac by changing syntax for libraryBruce Hill
imports to `use -lfoo` instead of `use foo.so`
2025-03-24Fix docsBruce Hill
2025-03-24Add num:percent()Bruce Hill
2025-03-21Move pandoc stuff into docs/Bruce Hill
2025-03-21Move manpage into docsBruce Hill
2025-03-17Update docsBruce Hill
2025-03-17Remove shell docsBruce Hill
2025-03-17Add Path:expand_home() as a publicly visible API and bugfix itBruce Hill
2025-03-16Remove enum type prefix when printing enumBruce Hill
2025-03-16Fix docsBruce Hill
2025-03-16Update file path API and docsBruce Hill
2025-03-12Rename `without_escaping()` -> `from_text()`Bruce Hill
2025-03-11Don't use '$' prefix for field namesBruce 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-07Add proper language support for case operations on textBruce Hill
2025-03-05Add print() as alias for say()Bruce Hill
2025-03-05Further shorten docsBruce Hill