index
:
tomo
bigints
constructive-reals
decimals
dev
doctests-to-debuglog
formatter
internal-texts
main
optional-list-indexing
optionals
paths
simplified-quotes
static-dependencies
str-paths
table-colons
text2
unicode-identifiers
wordier-types
The Tomo programming language
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
parse.c
Age
Commit message (
Expand
)
Author
2025-04-06
Allow uninitialized variables when there's a sensible empty value
Bruce Hill
2025-04-06
Add a parser error for empty enum definitions
Bruce Hill
2025-04-06
Explicitly support optional `do` for `while` and `for` loops
Bruce Hill
2025-04-06
Optional 'then' after 'if'/'when' clauses
Bruce Hill
2025-04-06
Merge branch 'main' into no-colons
Bruce Hill
2025-04-06
Change Set syntax from {x} to |x|
Bruce Hill
2025-04-06
No more colons for blocks
Bruce Hill
2025-04-06
Re-implement multiple patterns for `when` blocks
Bruce Hill
2025-04-06
Expand reducers so they support stuff like `(+.abs(): nums)` and
Bruce Hill
2025-04-06
Change method calls to use `foo.baz()` instead of `foo:baz()`
Bruce Hill
2025-04-06
Deprecate `!!` print statement
Bruce Hill
2025-04-04
Misc fixes
Bruce Hill
2025-04-04
First working compile of refactor to add explicit typing to declarations
Bruce Hill
2025-04-03
Allow specifying args like `func foo(xs:[Int] = [])`
Bruce Hill
2025-04-03
Allow using an untyped empty array/set/table literal for places where
Bruce Hill
2025-04-03
Deprecate heap_strf
Bruce Hill
2025-04-02
Syntax change: table types are now: `{K=V; default=...}` and tables
Bruce Hill
2025-04-01
Moved RNG out of the compiler and into a standalone library
Bruce Hill
2025-04-01
Move patterns into a module
Bruce Hill
2025-03-31
Remove threads and mutexed data from the language in favor of a
Bruce Hill
2025-03-31
Deprecate do_begin/do_end
Bruce Hill
2025-03-30
Prepend `do_begin` statements to `do` statements, don't put them in a
Bruce Hill
2025-03-30
Deprecate built-in Moment datatype in favor of a `time` module
Bruce Hill
2025-03-30
Further support for .dylib files on mac by changing syntax for library
Bruce Hill
2025-03-30
Fix some relative path stuff
Bruce Hill
2025-03-28
Don't force inline C code to use ({...})
Bruce Hill
2025-03-28
Add compiler guards for GCC directives
Bruce Hill
2025-03-28
Remove uppercase octal
Bruce Hill
2025-03-27
Phase out strchrnul
Bruce Hill
2025-03-27
Deprecate custom printf specifiers in favor of print() function that
Bruce Hill
2025-03-25
Add a special case for '???'
Bruce Hill
2025-03-25
Make docstring tests use an actual expression AST instead of text
Bruce Hill
2025-03-25
Parser errors should use USE_COLOR as well
Bruce Hill
2025-03-25
Fix parsing issue: `[1,2,3] _max_ [3,4,5]` was parsing as `_max_[..]`
Bruce Hill
2025-03-24
Bugfix for parsing escapes
Bruce Hill
2025-03-21
Move files into src/ and build into build/
Bruce Hill