aboutsummaryrefslogtreecommitdiff
path: root/examples/http/http.tm
AgeCommit message (Collapse)Author
2025-04-06Improved inline C code: now uses `C_code` keyword and supportsBruce Hill
interpolation with @
2025-04-06Allow uninitialized variables when there's a sensible empty valueBruce Hill
(defaults to empty/zero value)
2025-04-06No more colons for blocksBruce Hill
2025-04-06Change method calls to use `foo.baz()` instead of `foo:baz()`Bruce Hill
2025-04-06Deprecate `!!` print statementBruce 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-03-30Further support for .dylib files on mac by changing syntax for libraryBruce Hill
imports to `use -lfoo` instead of `use foo.so`
2025-02-04Use `defer` in http moduleBruce Hill
2025-02-04Add a `_` prefix on variables so it's easier to debug in GDBBruce Hill
2024-12-07Rename "NONE" to "none"Bruce 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-05Deprecate bit-width integer/num literals in favor of using typeBruce Hill
constructors
2024-10-28Add PATCHBruce Hill
2024-10-09Change function syntax from `func(args)->ret` to `func(args -> ret)`Bruce Hill
2024-09-18Remove unused codeBruce Hill
2024-09-15Move each example to its own folderBruce Hill