aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib
AgeCommit message (Collapse)Author
2025-05-17Add --version flag for executables and more documentation.Bruce Hill
2025-05-17Add `modules.ini` file for import aliases, as well as default aliasesBruce Hill
for the built-in modules.
2025-05-11Add new system for tracking versions.Bruce Hill
2025-05-06Bugfix for serialization of sets and tables with fallbacksBruce Hill
2025-05-06Check getrandom return valueBruce Hill
2025-05-06Check return valueBruce Hill
2025-05-06Check return valueBruce Hill
2025-05-06Check return valueBruce Hill
2025-05-06Check return valuesBruce Hill
2025-05-06Error checking for path componentsBruce Hill
2025-05-06Bugfix for truncation of BytesBruce Hill
2025-05-06Bugfix for converting integer to byteBruce Hill
2025-05-05Fix some permission stuff to make it more seamless to install toBruce Hill
directories the user doesn't own (e.g. /usr/local, owned by root)
2025-05-03Deprecate function name registering and printing the function's nameBruce Hill
2025-05-02Improved stack trace function namesBruce Hill
2025-05-02Bugfix for stack tracesBruce Hill
2025-05-02Fix bug where fallbacks were hashed by pointer instead of by contentsv0.2Bruce Hill
2025-05-02Remove speculative fixBruce Hill
2025-05-02Bugfix for text hashingBruce Hill
2025-05-01Add check for null typeBruce Hill
2025-05-01Include stdlibBruce Hill
2025-05-01Add missing fileBruce Hill
2025-04-30Speculative fix for memory error during installationBruce Hill
2025-04-30Fix up hdebug stuff for tablesBruce Hill
2025-04-30Update compiler to use randomly generated unique-per-file symbolBruce Hill
suffixes instead of needing to rename symbols with objcopy
2025-04-28Remove remaining printf referencesBruce Hill
2025-04-27Update stdlib to use `print` instead of `printf` in all cases. ThisBruce Hill
means bringing in fpconv to do float-to-string conversion and a few updates to integer and number methods for string formatting.
2025-04-26Bugfix for boolean parsingBruce Hill
2025-04-26Add TOMO_VERSION as a variable accessible to tomo programs at runtimeBruce Hill
2025-04-25Improved errors for list indexingBruce Hill
2025-04-25Clang fixesBruce Hill
2025-04-24Command line arg parsing fix for negative integers: `tomo foo.tm -- -123`Bruce Hill
2025-04-18Make Int.prev_prime() optional instead of erroringBruce Hill
2025-04-17Add getenv()/setenv()Bruce Hill
2025-04-16Roll back change to add a return for unreachable functionsBruce Hill
2025-04-16Automatically add return for unreachable code blocks (following aBruce Hill
_Noreturn) to make TinyCC happy
2025-04-16Fixes to get the compiler to build with -O3Bruce Hill
2025-04-15Make some compatibility fixes to make sure the compiler can fully buildBruce Hill
using TinyCC
2025-04-15Deprecate `auto`Bruce Hill
2025-04-15Add configuration script to choose install paths and default C compilerBruce Hill
and bake those into the compiled Tomo code
2025-04-15Bring back TCC support!Bruce Hill
2025-04-14Print full library pathBruce Hill
2025-04-14Slightly more robust filtering of stack trace from main() onwardsBruce Hill
2025-04-14Reworking of stack traces (back to using addr2line) for compatibilityBruce Hill
and improved output quality
2025-04-14Further fixes for printing quoted strings/charsBruce Hill
2025-04-14Fixes for printingBruce Hill
2025-04-12Replace addr2line with libbacktrace to get improved stack tracesBruce Hill
2025-04-10Remove strlcpy()Bruce Hill
2025-04-07Remove table.bump()Bruce Hill
2025-04-07get_or_setdefault needs to check data_refcountBruce Hill