aboutsummaryrefslogtreecommitdiff
path: root/builtins
AgeCommit message (Expand)Author
2024-09-03Bugfix for $/{..}/Bruce Hill
2024-09-03Use Text("...") literal constructor instead of Text$from_str("...")Bruce Hill
2024-09-03Support literal Text("blah") for text that is constant ASCII stringsBruce Hill
2024-09-03Escape question marks in patternsBruce Hill
2024-09-03Change pattern syntax from [..pat] to {pat}Bruce Hill
2024-09-03Syntax overhaul (comments back to `#`, print statments to `!!`),Bruce Hill
2024-09-03Deprecate `Where` and change channel API to use a boolean `front` valueBruce Hill
2024-09-03Better behavior for invalid character namesBruce Hill
2024-09-03Fix codepoint names by falling back to block namesBruce Hill
2024-09-03Fix for missing codepoint namesBruce Hill
2024-09-03Add [..int] and [..num]Bruce Hill
2024-09-02Fix some stuff around Text:find() and text indexingBruce Hill
2024-09-02Add Text:find_all()Bruce Hill
2024-09-02Fix splitting an empty stringBruce Hill
2024-09-02Add Text:join() and testsBruce Hill
2024-09-02Add Text:split() and use that with an empty pattern instead of Text:clusters()Bruce Hill
2024-09-02Add Text:lines()Bruce Hill
2024-09-02Add %#k printing and fix issue with concatenating zero-length stringsBruce Hill
2024-09-02WIP fixes for synthetic graphemes and adding some text conversionBruce Hill
2024-09-02Text fixesBruce Hill
2024-09-02Fix casing methodsBruce Hill
2024-09-02Fix printing issueBruce Hill
2024-09-02Fixing string methodsBruce Hill
2024-09-02Bugfix some text replacement thingsBruce Hill
2024-09-02Fix up some integer and print statement stuffBruce Hill
2024-09-02Bugfix int parsingBruce Hill
2024-09-02Fix enums/structsBruce Hill
2024-09-02Fix some stuffBruce Hill
2024-09-02BugfixBruce Hill
2024-09-02Initial WIP first pastBruce Hill
2024-08-25`Where` should use empty struct typeinfosBruce Hill
2024-08-23Bugfix for say() when length is >512, and added back the `newline`Bruce Hill
2024-08-23Bugfix for parsing intsBruce Hill
2024-08-22Overhaul of import syntax. Now everything uses `use`: `use foo`, `useBruce Hill
2024-08-19Add .text_content as a field on DSLs instead of a methodBruce Hill
2024-08-19Fix some numeric precision issues with how nums are printedBruce Hill
2024-08-18Update channel API to take a Where parameterBruce Hill
2024-08-18Add Channel:peek()Bruce Hill
2024-08-18Rename push/pop to give/get, since it's not stack-orderedBruce Hill
2024-08-18Add Int:clamped() and Num:clamped()Bruce Hill
2024-08-18Add array:first(predicate:func(x:&T)->Bool)->@%T?Bruce Hill
2024-08-18Fix array indexingBruce Hill
2024-08-18Add primality testing and next_prime()/prev_prime()Bruce Hill
2024-08-17Make small integer constants actually constantBruce Hill
2024-08-17Remove 'const' where it caused problemsBruce Hill
2024-08-17Allow for top-level or namespace-level variables that are initializedBruce Hill
2024-08-16Change division and modulus to use euclidean division, plus fix up a fewBruce Hill
2024-08-16Add Bool:random(p=0.5)Bruce Hill
2024-08-16More fixes for intsBruce Hill
2024-08-16BugfixBruce Hill