aboutsummaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
2025-03-17FIx colorfulwordier-typesBruce Hill
2025-03-17Fully rename array to listBruce Hill
2025-03-17Switch types to use wordier syntax `[T]` -> `List(T)` etcBruce 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
2025-03-10Add some vector methodsBruce Hill
2025-03-10Fixes for examplesBruce Hill
2025-03-10Fix/update colorfulBruce Hill
2025-03-05Overhaul of constructors, making it more consistent and correct. AlsoBruce Hill
changed T(), T, T_t, T_s type names to T(), T$$info, T$$type, T$$struct for unambiguity
2025-03-03Update CLI APIBruce Hill
2025-03-02Add `colorful` DSLBruce Hill
2025-03-01Change `lang.text_content` to `lang.text`Bruce Hill
2025-02-21Fix learnxinyBruce Hill
2025-02-04Use `defer` in http moduleBruce Hill
2025-02-04Add a `_` prefix on variables so it's easier to debug in GDBBruce Hill
2025-01-12Fix up examplesBruce Hill
2024-12-07Rename "NONE" to "none"Bruce Hill
2024-11-30Bring back `table[key]` syntaxBruce Hill
2024-11-26Tweak docsBruce Hill
2024-11-26Add some examples to the repoBruce Hill
2024-11-24Clean up some more null->none renames and fix the documentation. AlsoBruce Hill
change the literal syntax to `NONE:T` instead of `!T`
2024-11-24Switch `NaN` to be identical to the null valueBruce Hill
2024-11-21Add `NULL` as a syntax for null values.Bruce Hill
2024-11-19Rename `Text.utf8_bytes` back to `Text.bytes`Bruce 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
pointers
2024-11-09Rename `from_text()` to `parse()`Bruce Hill
2024-11-05Fix up old-style reducersBruce Hill
2024-11-05Deprecate bit-width integer/num literals in favor of using typeBruce Hill
constructors
2024-11-04Be much more permissive about using integer literals for fixed-size intsBruce Hill
or nums or bytes
2024-11-04Add base64 libBruce Hill
2024-10-28Add PATCHBruce Hill
2024-10-27Fix up examples to no longer use '&'Bruce Hill
2024-10-09Change function syntax from `func(args)->ret` to `func(args -> ret)`Bruce Hill
2024-09-24Rename `from_unsafe_text` to `without_escaping`Bruce Hill
2024-09-18Remove coroutine example for nowBruce Hill
2024-09-18Remove unused codeBruce Hill
2024-09-16Deprecate :or_else()/:or_fail()/:or_exit() in favor of the `or` operatorBruce Hill
2024-09-16Minor cleanupBruce Hill