diff options
author | Julien Dessaux | 2021-10-06 23:25:41 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-10-06 23:25:41 +0200 |
commit | cca0eb2117a98695a0280adbc1693b3c92cfab7a (patch) | |
tree | a9167286c69938fb39cea9a45afded2990638621 /README.md | |
parent | Implemented missing functions for the interpreter (diff) | |
download | nimfunge98-cca0eb2117a98695a0280adbc1693b3c92cfab7a.tar.gz nimfunge98-cca0eb2117a98695a0280adbc1693b3c92cfab7a.tar.bz2 nimfunge98-cca0eb2117a98695a0280adbc1693b3c92cfab7a.zip |
Implemented the interpreter
Diffstat (limited to '')
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,7 +3,6 @@ This repository contains code for a nim program that can interpret a valid [Funge-98](https://github.com/catseye/Funge-98/blob/master/doc/funge98.markdown) program. It will soon pass the [mycology test suite](https://github.com/Deewiant/Mycology). Current limitations are : -- it is not finished! - currently does not implement any fingerprints - does not implement concurrent execution with the `t` command - does not implement file I/O with the `i` and `o` commands @@ -70,4 +69,7 @@ To debug these particular tests, use : ``` nim c --debugger:on --parallelBuild:1 --debuginfo --linedir:on tests/stack.nim gdb tests/stack +set args XXXXX-if-necessary +b src/truc.nim:123 +r ``` |