aboutsummaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
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-02Move HTML into scriptBruce Hill
2025-04-02Update table syntaxBruce Hill
2025-04-02Syntax change: table types are now: `{K=V; default=...}` and tablesBruce Hill
use `{:K=V, ...; default=...}`
2025-04-01Add http-server exampleBruce Hill
2025-04-01Rename default RNG to `random`Bruce Hill
2025-04-01Tweak threads codeBruce Hill
2025-04-01Update READMEBruce Hill
2025-04-01Fix some pattern usagesBruce Hill
2025-04-01Update patterns API and docsBruce Hill
2025-04-01Update pattern docsBruce Hill
2025-04-01Moved RNG out of the compiler and into a standalone libraryBruce Hill
2025-04-01Add `core` library to avoid having to explicitly import a bunch ofBruce Hill
common libraries
2025-04-01Clean up and improve patternsBruce Hill
2025-04-01Rename P -> PatBruce Hill
2025-04-01Move patterns into a moduleBruce Hill
2025-03-31Remove threads and mutexed data from the language in favor of aBruce Hill
module-based approach
2025-03-31Deprecate do_begin/do_endBruce Hill
2025-03-30Add RW-lockBruce Hill
2025-03-30Add readme stuff about timesBruce Hill
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-27Deprecate custom printf specifiers in favor of print() function thatBruce Hill
uses _Generic() to generically convert any value to a string or print as a string.
2025-03-25Make docstring tests use an actual expression AST instead of textBruce Hill
matching
2025-03-24Failure messagesBruce Hill
2025-03-24Add some exit type methodsBruce Hill
2025-03-24Change commands interface so it can either run or get resultBruce Hill
2025-03-21Update readmeBruce Hill
2025-03-21Fix colorfulBruce Hill
2025-03-21Fixes for ask() being optional and command success statusBruce Hill
2025-03-21Fix allocationsBruce Hill
2025-03-21Update threads allocation codeBruce Hill
2025-03-19Replace "begin"/"end" with "do_begin"/"do_end"Bruce Hill
2025-03-19Add command and shell :by_line()Bruce Hill
2025-03-18Pluralize pthreadsBruce Hill
2025-03-17FIx colorfulBruce Hill
2025-03-17Command.from_path()Bruce Hill
2025-03-17Update pthreads exampleBruce Hill
2025-03-17Add pthread exampleBruce Hill
2025-03-17Big overhaul:Bruce Hill
- Clean up environment code using type strings instead of manually defining types - Add Commands module - Move Shell lang into an example module that uses Commands module - Fix some bugs with chained library dependencies
2025-03-17Fix path issueBruce Hill
2025-03-17Update learnxiny for enums no longer showing the type nameBruce Hill
2025-03-15Overhaul of Path so it uses root and array of components instead ofBruce Hill
stringly typed
2025-03-12Rename `without_escaping()` -> `from_text()`Bruce Hill
2025-03-11Update commentsBruce Hill
2025-03-11Fixes for integer truncationBruce Hill
2025-03-11Support external structs with namespaced methods (also C-strings are nowBruce Hill
`const char*` instead of `char*`)
2025-03-11Don't use '$' prefix for field namesBruce Hill
2025-03-11Add a few colorful escapesBruce Hill