aboutsummaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)Author
2024-10-03Fix up some compiler flags around floating point numbers so they workBruce Hill
better with -Ofast and have more standardized behavior
2024-09-30Clean examples when doing `make clean`Bruce Hill
2024-09-29Add DateTimeBruce Hill
2024-09-15Add a Byte datatypeBruce Hill
2024-09-13Rename builtins/ -> stdlib/Bruce Hill
2024-09-13Rename c_string.{c,h} -> c_strings.{c,h}Bruce Hill
2024-09-13Rename builtins to use plurals when appropriateBruce Hill
2024-09-13Code cleanupBruce Hill
2024-09-13Move cord helper functions into their own fileBruce Hill
2024-09-13Split pattern code into its own fileBruce Hill
2024-09-11Use optionals for iteratorsBruce Hill
2024-09-11Add optional typesBruce Hill
2024-09-09Add (/path):by_line()Bruce Hill
2024-09-09Initial working versionBruce Hill
2024-09-08Fix nearly every GCC warning and add __attribute__((pure/const)) whereBruce Hill
appropriate
2024-09-06Add Shell dsl typeBruce Hill
2024-09-05Fully clean up siphash code and fix some issuesBruce Hill
2024-09-04Remove readline dependencyBruce Hill
2024-09-03Show error output on test failureBruce Hill
2024-09-03Deprecate `Where` and change channel API to use a boolean `front` valueBruce Hill
2024-08-19Add .text_content as a field on DSLs instead of a methodBruce Hill
2024-08-13Speed up tests slightlyBruce Hill
2024-08-13More fixesBruce Hill
2024-08-13Partially working first draft of bigintsBruce Hill
2024-08-11Add channels and threadsBruce Hill
2024-08-05Add a Range datatype with creation methods like `5:to(10)` andBruce Hill
modification methods like `range:by(2)` or `range:reversed()`
2024-07-23Tweak Make depsBruce Hill
2024-07-23Add headers to make depsBruce Hill
2024-06-17Dump test results to console againBruce Hill
2024-06-17Fix issue with bitfieldsBruce Hill
2024-06-17Tweak test outputBruce Hill
2024-06-11Add manpageBruce Hill
2024-06-09Remove linker flags that aren't needed anymoreBruce Hill
2024-06-09Change build process to use static objects instead of dynamic linkingBruce Hill
for compiler
2024-06-06Change the rules for tests so they recompile and save their outputBruce Hill
2024-05-20Hook up Text.has(), Text.trimmed(), Text.without()Bruce Hill
2024-05-18Add C string typeBruce Hill
2024-05-12Deprecate interfaces (RIP)Bruce Hill
2024-05-12WIP, but functional interfacesBruce Hill
2024-05-01Fix up some path issues during compilation/running/installationBruce Hill
2024-04-20Inline color fileBruce Hill
2024-04-16Exit with 1 on failureBruce Hill
2024-04-16Invert escaping so user symbols get prepended with "$" and builtinBruce Hill
symbols don't
2024-04-15Run tests in random orderBruce Hill
2024-04-03Dynamically link against .so file instead of statically linking againstBruce Hill
object files
2024-03-30Adding a REPLBruce Hill
2024-03-29Switch naming convention to use '$' in symbols moreBruce Hill
2024-03-21Force remove precompiled files before testBruce Hill
2024-03-14Remove some shadowed variablesBruce Hill
2024-03-10Rearranging some filesBruce Hill