aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Go: make use of multiple return valuesslicesPřemysl Janouch2018-10-103-168/+136
|
* Go: store scopes in reverse order for efficiencyPřemysl Janouch2018-10-101-13/+9
|
* Go: store scopes and globals as mapsPřemysl Janouch2018-10-102-33/+18
|
* Go: use slices for list valuesPřemysl Janouch2018-10-103-208/+158
|
* Go: use slices for Handler resultsPřemysl Janouch2018-10-101-72/+81
|
* Go: use slices for Handler argumentsPřemysl Janouch2018-10-101-140/+150
| | | | First step to replacing linked lists with something more Go-like.
* Go/repl: improve completionPřemysl Janouch2018-10-101-8/+14
|
* Go: make the `system` command more usefulPřemysl Janouch2018-10-091-0/+3
| | | | Connect standard streams.
* Go: use string for strings instead of []bytePřemysl Janouch2018-10-093-21/+19
| | | | A few conversions more, a few conversions less.
* Go: remove useless accessors to Ell.HandlersPřemysl Janouch2018-10-091-12/+2
|
* Add a port to GoPřemysl Janouch2018-10-094-2/+1451
|
* 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
|
* Update READMEPřemysl Janouch2018-06-241-4/+4
|
* Relicense to 0BSD, update mail addressPřemysl Janouch2018-06-245-19/+10
| | | | | | | | | 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-223-29/+25
| | | | Gets rid of stupid memset()s and some preprocessor.
* Add VIM syntax highlightingPřemysl Janouch2017-06-202-0/+23
|
* Make the printer genericPřemysl Janouch2017-06-012-42/+73
| | | | Now you can concatenate lists like strings.
* Skip \r as whitespacePřemysl Janouch2017-06-011-1/+1
|
* The great librarificating renamePřemysl Janouch2017-05-303-658/+675
|
* "quote" -> "block"Přemysl Janouch2017-05-302-22/+27
| | | | Update README accordingly.
* Fix regression in multiplicationPřemysl Janouch2017-05-282-3/+3
|
* Update READMEPřemysl Janouch2017-05-271-9/+10
|
* Update READMEPřemysl Janouch2017-05-261-3/+4
|
* interpreter: forward "argv"Přemysl Janouch2017-05-261-2/+6
|
* Remove suckPřemysl Janouch2017-05-265-102/+99
| | | | | | 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-263-47/+81
| | | | | | Okay, that was a PITA to not have. But I think I'm set now, feature-wise.
* Update READMEPřemysl Janouch2017-05-261-2/+6
|
* Simplify ".."Přemysl Janouch2017-05-261-3/+1
|
* Add "values"Přemysl Janouch2017-05-262-4/+13
| | | | This oneliner is way too important to be left out.
* Make and/or more usefulPřemysl Janouch2017-05-262-10/+31
| | | | 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-253-38/+100
| | | | | | | | 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.
* Update READMEPřemysl Janouch2017-05-251-4/+28
|
* Replace for/break with a try/throw mechanismPřemysl Janouch2017-05-252-41/+14
|
* CleanupPřemysl Janouch2017-05-252-2/+5
|
* 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
|
* repl: add completionPřemysl Janouch2017-05-231-1/+30
| | | | Now it should be fairly useful despite the limitation to single lines.
* repl: highlight matching parenthesisPřemysl Janouch2017-05-231-0/+7
|