aboutsummaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
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
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