Age | Commit message (Expand) | Author |
2021-07-23 | Remove debug print from before | Peter Mikkelsen |
2021-07-23 | Simplify parsing a bit, and make sure the prolog loader calls read_term with ... | Peter Mikkelsen |
2021-07-22 | Garbage collect as the first thing in the repl loop. | Peter Mikkelsen |
2021-07-22 | Silence warning about singleton variables in system.pl and loader.pl | Peter Mikkelsen |
2021-07-22 | Fix ; again haha, I can't just wrap variable goals in call/1 due to cuts bein... | Peter Mikkelsen |
2021-07-22 | Big commit changing the way the system is loaded at startup. | Peter Mikkelsen |
2021-07-22 | Implement halt/0, halt/1, and understand the --no-repl flag | Peter Mikkelsen |
2021-07-22 | Use addgoals to add the goal in catch/3 to the goalstack, allowing mod:pred g... | Peter Mikkelsen |
2021-07-22 | Understand set_prolog_flag directive | Peter Mikkelsen |
2021-07-22 | Understand initialization/1 directives | Peter Mikkelsen |
2021-07-22 | Make predicates private and static by default, and make them dynamic when usi... | Peter Mikkelsen |
2021-07-22 | Fix singleton warnings in repl.pl | Peter Mikkelsen |
2021-07-22 | Warn about singleton variables in clauses, as it is often a sign of a mis-spe... | Peter Mikkelsen |
2021-07-22 | Actually load repl.pl with the prolog loader, and handle module directives | Peter Mikkelsen |
2021-07-22 | Use the prolog loader to load the repl. | Peter Mikkelsen |
2021-07-21 | Always use a fresh clausenr for read teams, and make sure to update the claus... | Peter Mikkelsen |
2021-07-20 | The iso standard want's call(G) to throw a type_error(callable, G), when G co... | Peter Mikkelsen |
2021-07-20 | Throw errors when trying to evaluate goals that cannot be evaluated | Peter Mikkelsen |
2021-07-20 | Add support for character code constants like 0'a | Peter Mikkelsen |
2021-07-20 | Add a bit of a hack to the parser so it can parse (a) op arg when a is an ope... | Peter Mikkelsen |
2021-07-20 | Support '' in tokens | Peter Mikkelsen |
2021-07-20 | Add a new work in progress loader to load all user defined modules | Peter Mikkelsen |
2021-07-20 | Add a space between printout and ; or . | Peter Mikkelsen |
2021-07-20 | Add op/3 and current_op/3 | Peter Mikkelsen |
2021-07-19 | Update TODO | Peter Mikkelsen |
2021-07-19 | Try to print A = B instead of A = _X, B = _X when two variables are equal | Peter Mikkelsen |
2021-07-19 | Print errors better in the repl | Peter Mikkelsen |
2021-07-19 | More work on streams | Peter Mikkelsen |
2021-07-18 | Load extra arguments as module files | Peter Mikkelsen |
2021-07-18 | Install stdlib.pl and repl.pl into /sys/lib/prolog/ | Peter Mikkelsen |
2021-07-16 | Handle -d option in prolog | Peter Mikkelsen |
2021-07-16 | Handle the 'unknown' prolog flag correctly | Peter Mikkelsen |
2021-07-16 | Implement a bit more of prolog flag predicates set_prolog_flag/2 and current_... | Peter Mikkelsen |
2021-07-16 | Pass arguments to repl/1 | Peter Mikkelsen |
2021-07-16 | Replace the C repl with one written in prolog :) | Peter Mikkelsen |
2021-07-16 | Add character input/output | Peter Mikkelsen |
2021-07-16 | Make operators local to each module, and implement some more correct prettypr... | Peter Mikkelsen |
2021-07-15 | Make read_term understand the three read options: | Peter Mikkelsen |
2021-07-13 | Add atom_concat/3 | Peter Mikkelsen |
2021-07-13 | Add atom_codes/2 | Peter Mikkelsen |
2021-07-13 | Add atom_length/2 | Peter Mikkelsen |
2021-07-13 | Implement sort/2 and setof/3 | Peter Mikkelsen |
2021-07-13 | When binding two variables to eachother, always bind to the one with the lowe... | Peter Mikkelsen |
2021-07-11 | Using member and then cut always picks the first element anyways, so just pic... | Peter Mikkelsen |
2021-07-11 | Try to implement bagof/3, but I am not 100% sure it is correct | Peter Mikkelsen |
2021-07-10 | Add findall/3 implemented in prolog | Peter Mikkelsen |
2021-07-09 | Add asserta/1, assertz/1, retract/1, abolish/1 (and retract_one/1, which is r... | Peter Mikkelsen |
2021-07-08 | Add current_predicate/1 builtin | Peter Mikkelsen |
2021-07-08 | Make the repl bindings and query global so the garbage collector can know abo... | Peter Mikkelsen |
2021-07-08 | Add a hash table to make the garbage collection faster | Peter Mikkelsen |