aboutsummaryrefslogtreecommitdiff
path: root/src/environment.c
AgeCommit message (Collapse)Author
2025-09-09Merge branch 'main' into table-colonstable-colonsBruce Hill
2025-09-09Overhaul to the unicode encoding/decoding methods for textBruce Hill
2025-09-06Use colons instead of '=' for tables (e.g. {1: 2})Bruce Hill
2025-09-06Code cleanupBruce Hill
2025-08-25Update file header commentsBruce Hill
2025-08-25Further split out files for parsingBruce Hill
2025-08-25More docs and moving parsing into a subfolder.Bruce Hill
2025-08-24Remove vim modelinesBruce Hill
2025-08-24Constructors and functions with underscore arguments should be allowed to be ↵Bruce Hill
called, but only if the underscore arguments are not provided but are implicit from the default values. Same for constructing structs with private fields.
2025-08-23Fix readability and don't align trailing commentsBruce Hill
2025-08-23Autoformat everything with clang-formatBruce Hill
2025-08-23Remove some unused importsBruce Hill
2025-08-17Bugfix: added support for Tomo identifiers that are C keywordsBruce Hill
2025-08-16Improved parsing and prefix/suffix matching using a `remainder`Bruce Hill
parameter
2025-08-10Add full protection against accessing fields and methods that start withBruce Hill
underscores outside of the scope where the type is defined.
2025-08-09Deprecate cords from the gc library in favor of dogfooding Text from theBruce Hill
Tomo standard library.
2025-07-10Add text compression optimizations for unicode textBruce Hill
2025-06-26Add get_bit() method for Ints and BytesBruce Hill
2025-06-24Add Path.has_extension() and update manpages/api docsBruce Hill
2025-05-25Code cleanupBruce Hill
2025-05-20Add more advanced configuration options to modules.ini and supportBruce Hill
automatically downloading and installing from it.
2025-05-17Add `modules.ini` file for import aliases, as well as default aliasesBruce Hill
for the built-in modules.
2025-05-17Add Path.sibling()Bruce 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-30Use namespace prefix function when appropriateBruce 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-26Add TOMO_VERSION as a variable accessible to tomo programs at runtimeBruce Hill
2025-04-18Make Int.prev_prime() optional instead of erroringBruce Hill
2025-04-17Add getenv()/setenv()Bruce Hill
2025-04-16Add Path.current_dir() as exposed methodBruce 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 --no-source-mapping flagBruce Hill
2025-04-07Add `is_between()` for various typesBruce Hill
2025-04-07Add Byte.to() method and improved micro optimization of iterating overBruce Hill
fixed-width integer ranges
2025-04-06Rename Array -> List in all code and docsBruce Hill
2025-04-06Make string escapes more normal: "\n" for newline, etc. Backticks can beBruce Hill
used to put in literal code without escape sequences.
2025-04-06Make it a bit more ergonomic to make function typesBruce 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-02Syntax change: table types are now: `{K=V; default=...}` and tablesBruce Hill
use `{:K=V, ...; default=...}`
2025-04-01Moved RNG out of the compiler and into a standalone libraryBruce Hill
2025-04-01Move patterns into a moduleBruce Hill
2025-03-31Fully move all pattern code into patterns.cBruce Hill
2025-03-31Remove threads and mutexed data from the language in favor of aBruce Hill
module-based approach
2025-03-30Deprecate built-in Moment datatype in favor of a `time` moduleBruce Hill
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-25Compiler errors should use USE_COLORBruce Hill
2025-03-24Add num:percent()Bruce Hill
2025-03-21Move files into src/ and build into build/Bruce Hill