The Conlang programming language is an expression-based interpreted (todo: compiler) language
Go to file
John f25685560a conlang: Tokenize punctuation (resolves #9)
Things left to consider:
- token::Type enum is getting fairly large.
  breaking it up could invoke substantial code bloat
- Compound operators might make more sense at the parser level
  - Compound-assign operators are ripe for syntactic desugaring,
    but there must be some reason it's done separately in other languages.
  - Operators like FatArrow may still make sense at the tokenizer level, regardless.
  - What is a lexer? A miserable pile of parsers!
- Operator overloading, or user-defined operators? Hmm...
2023-09-28 00:11:31 -05:00
.gitea/issue_template Add feature-proposal template 2023-09-21 17:46:00 -05:00
lerox integer: Match based on base, if present 2023-09-25 16:43:50 -05:00
libconlang conlang: Tokenize punctuation (resolves #9) 2023-09-28 00:11:31 -05:00
.gitignore conlang: Rename literals; split, compose, and document Rules 2023-09-27 18:13:01 -05:00
.rustfmt.toml .rustfmt.toml: Configure rustfmt to be slightly more pretty 2023-09-22 23:55:19 -05:00
Cargo.toml lerox: Add lerox, a silly little combinator library 2023-09-22 23:54:09 -05:00
dummy.cl conlang: Rename literals; split, compose, and document Rules 2023-09-27 18:13:01 -05:00
readme.md readme.md: Create readme.md 2023-09-22 23:51:57 -05:00

Conlang: Expression-oriented programming language

TODO: the language