| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | begin work on command line interface | Akshay | 2021-03-31 | 3 | -0/+136 |
* | refactor to use Evaluator | Akshay | 2021-03-30 | 1 | -4/+10 |
* | add assert primitive; pass state in Evaluator | Akshay | 2021-03-30 | 6 | -260/+240 |
* | use Display trait instead of Debug to show errors on main | Akshay | 2021-03-30 | 3 | -40/+70 |
* | better parse errors; include lisp stdlib | Akshay | 2021-03-30 | 6 | -54/+235 |
* | add new catch-all error types | Akshay | 2021-03-30 | 3 | -32/+81 |
* | fix: sdl panics on empty string drawing | Akshay | 2021-03-29 | 2 | -14/+17 |
* | more list primitives, add type_match macro | Akshay | 2021-03-29 | 2 | -9/+49 |
* | functions are first class | Akshay | 2021-03-29 | 1 | -34/+40 |
* | fix: handle unterminated strings gracefully | Akshay | 2021-03-29 | 3 | -5/+20 |
* | backtrace on flake env | Akshay | 2021-03-28 | 3 | -2/+5 |
* | add Debug & PartialEq impls for LispExpr; add eval tests | Akshay | 2021-03-28 | 3 | -38/+117 |
* | fix arity of arithmetic comparison operators | Akshay | 2021-03-28 | 1 | -4/+4 |
* | deprecate last_point | Akshay | 2021-03-28 | 1 | -4/+1 |
* | rework ModifyRecord to support operation kinds | Akshay | 2021-03-28 | 1 | -14/+15 |
* | restructure Brush enum | Akshay | 2021-03-28 | 2 | -79/+83 |
* | add better brush drawing feedback | Akshay | 2021-03-28 | 8 | -61/+131 |
* | ignore log files | Akshay | 2021-03-28 | 1 | -0/+1 |
* | implement flood fill; new fill brush | Akshay | 2021-03-28 | 2 | -58/+118 |
* | add new brush type | Akshay | 2021-03-28 | 6 | -1/+98 |
* | misteak | Akshay | 2021-03-27 | 1 | -1/+1 |
* | language annotations in md | Akshay | 2021-03-27 | 1 | -2/+2 |
* | add basic usage doc | Akshay | 2021-03-27 | 1 | -0/+46 |
* | add obi as git dep | Akshay | 2021-03-27 | 3 | -1/+2 |
* | missing else | Akshay | 2021-03-27 | 1 | -0/+1 |
* | implement char literals | Akshay | 2021-03-27 | 4 | -23/+82 |
* | better arity spec | Akshay | 2021-03-27 | 1 | -37/+95 |
* | add arity struct for primitives | Akshay | 2021-03-27 | 2 | -7/+108 |
* | impl message colors; reading file path on load | Akshay | 2021-03-25 | 2 | -3/+43 |
* | use new error kinds; track Environment nesting with stack | Akshay | 2021-03-25 | 5 | -70/+120 |
* | move primitives.rs to prelude.rs | Akshay | 2021-03-25 | 3 | -174/+224 |
* | add checked downcast methods to LispExpr | Akshay | 2021-03-25 | 1 | -4/+58 |
* | ad display impls for parse and eval errors | Akshay | 2021-03-25 | 1 | -3/+107 |
* | new quit primitive | Akshay | 2021-03-24 | 2 | -2/+9 |
* | rename env to eval, add div operator | Akshay | 2021-03-24 | 6 | -13/+37 |
* | implement boolean primitives; `begin` form | Akshay | 2021-03-24 | 1 | -1/+30 |
* | logging stuff | Akshay | 2021-03-24 | 2 | -1/+2 |
* | allow minus operator, improve display for exprs | Akshay | 2021-03-24 | 3 | -25/+32 |
* | add lisp primitives: set!, define, lambda, if | Akshay | 2021-03-24 | 1 | -35/+171 |
* | fix empty history panic | Akshay | 2021-03-24 | 1 | -0/+3 |
* | expose functions to lisp interface, add primitives with macros | Akshay | 2021-03-23 | 5 | -85/+80 |
* | macro based primitive implementor | Akshay | 2021-03-23 | 1 | -0/+10 |
* | add logger | Akshay | 2021-03-23 | 5 | -5/+154 |
* | implement message display and types | Akshay | 2021-03-23 | 3 | -13/+84 |
* | add types for lisp primitives and functions | Akshay | 2021-03-23 | 3 | -37/+44 |
* | add invert function and keybinds | Akshay | 2021-03-23 | 3 | -20/+33 |
* | init env | Akshay | 2021-03-23 | 1 | -0/+117 |
* | fix empty command exec bug | Akshay | 2021-03-20 | 1 | -10/+9 |
* | begin work on parser | Akshay | 2021-03-20 | 3 | -7/+262 |
* | factor out types into expr.rs | Akshay | 2021-03-20 | 2 | -40/+90 |