aboutsummaryrefslogtreecommitdiff
path: root/ell.c
Commit message (Collapse)AuthorAgeFilesLines
* Add clang-format configuration, clean upPřemysl Eric Janouch2021-11-061-46/+53
|
* Name changePřemysl Eric Janouch2020-09-281-1/+1
|
* C: add const specifiers where appropriatePřemysl Janouch2018-10-101-17/+23
| | | | As a hint whether values are eaten.
* Fix an apparent memory leakPřemysl Janouch2018-10-091-3/+2
|
* CleanupPřemysl Janouch2018-10-091-4/+4
| | | | Use inline semicolons rather then line feeds.
* Sanitize error message in "throw"Přemysl Janouch2018-10-091-1/+1
|
* Fix typoPřemysl Janouch2018-10-091-1/+1
|
* Relicense to 0BSD, update mail addressPřemysl Janouch2018-06-241-3/+2
| | | | | | | | | I've come to the conclusion that copyright mostly just stands in the way of software development. In my jurisdiction I cannot give up my own copyright and 0BSD seems to be the closest thing to public domain. The updated mail address, also used in my author/committer lines, is shorter and looks nicer. People rarely interact anyway.
* _init() and _INITIALIZER -> _make()Přemysl Janouch2017-06-221-21/+20
| | | | Gets rid of stupid memset()s and some preprocessor.
* Make the printer genericPřemysl Janouch2017-06-011-41/+72
| | | | Now you can concatenate lists like strings.
* Skip \r as whitespacePřemysl Janouch2017-06-011-1/+1
|
* The great librarificating renamePřemysl Janouch2017-05-301-613/+630
|
* "quote" -> "block"Přemysl Janouch2017-05-301-9/+7
| | | | Update README accordingly.
* Fix regression in multiplicationPřemysl Janouch2017-05-281-1/+1
|
* Remove suckPřemysl Janouch2017-05-261-82/+84
| | | | | | struct context::arguments stank, the "arg" special form stank. The amount of lines this adds can be counted on one hand.
* Implement dynamic scopingPřemysl Janouch2017-05-261-34/+74
| | | | | | Okay, that was a PITA to not have. But I think I'm set now, feature-wise.
* Simplify ".."Přemysl Janouch2017-05-261-3/+1
|
* Add "values"Přemysl Janouch2017-05-261-0/+5
| | | | This oneliner is way too important to be left out.
* Make and/or more usefulPřemysl Janouch2017-05-261-10/+23
| | | | Now they follow Scheme, they just aren't special forms here.
* Simplify runtime library initializationPřemysl Janouch2017-05-251-63/+52
| | | | And remove the error printing side effect, just like that, at a cost.
* Finish implementation of printingPřemysl Janouch2017-05-251-32/+99
| | | | | | | | Now readds all syntax sugar and quotes strings properly. Removed automatic line breaking and indenting since it is complicated. Removed #ifndef since it stopped making any sense.
* Fix "if"Přemysl Janouch2017-05-251-11/+18
| | | | Blocks didn't work.
* Replace for/break with a try/throw mechanismPřemysl Janouch2017-05-251-41/+6
|
* CleanupPřemysl Janouch2017-05-251-2/+2
|
* Add try/throwPřemysl Janouch2017-05-251-0/+34
|
* Fix "-"Přemysl Janouch2017-05-251-1/+6
|
* Add "parse"Přemysl Janouch2017-05-251-0/+16
|
* Make setting "set" also return the valuePřemysl Janouch2017-05-251-0/+1
|
* Get rid of "error_is_fatal"Přemysl Janouch2017-05-251-2/+0
|
* Simplify truthy()Přemysl Janouch2017-05-241-3/+1
|
* Make the lexer follow an unsigned stringPřemysl Janouch2017-05-241-6/+6
| | | | Much safer this way, allows omitting "unsigned char" temporaries.
* Simplify the lexerPřemysl Janouch2017-05-241-73/+40
|
* Simplify item managementPřemysl Janouch2017-05-241-27/+8
|
* "filter" is not a primitivePřemysl Janouch2017-05-231-31/+2
|
* Fix "unless"Přemysl Janouch2017-05-211-2/+1
| | | | Best of all is, I don't even know why it must be like that.
* Refactor argument savingPřemysl Janouch2017-05-211-16/+16
| | | | While nothing has been achieved, at least now it should be obvious.
* Specify argument in which an error happenedPřemysl Janouch2017-05-211-9/+23
|
* Remove some ancient stupidityPřemysl Janouch2017-05-211-40/+36
|
* Reorganize evaluation codePřemysl Janouch2017-05-211-71/+67
|
* Fix crash in print_tree()Přemysl Janouch2017-05-211-1/+2
|
* Allow calling literal blocksPřemysl Janouch2017-05-211-11/+22
|
* Update READMEPřemysl Janouch2017-05-211-0/+1
|
* Fix backtrace generationPřemysl Janouch2017-05-211-0/+1
|
* Split out the interpreterPřemysl Janouch2017-05-211-54/+0
|
* Fix combined operatorsPřemysl Janouch2017-05-211-4/+4
|
* Add numerical comparisonsPřemysl Janouch2017-05-211-1/+37
|
* Add "ne?", "ge?", "le?", "gt?"Přemysl Janouch2017-05-211-2/+7
| | | | At least in some form.
* Add "eq?" and "lt?"Přemysl Janouch2017-05-211-1/+32
|
* Add boolean operatorsPřemysl Janouch2017-05-211-1/+26
|
* Omit trailing zeros when not necessaryPřemysl Janouch2017-05-211-15/+15
|