Archived
1
0
Fork 0
a Funge-98 interpreter written in nim
This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2024-02-11 23:49:08 +01:00
examples Fix several bugs #1 2023-01-07 11:10:04 +01:00
mycology@2e405a62a3 Bumped the mycology test suite to the last version 2024-02-11 23:49:08 +01:00
spec@7b4330df1a Added submodules with the spec and the mycology test suite 2021-10-07 18:24:48 +02:00
src Fix several bugs #1 2023-01-07 11:10:04 +01:00
tests Fix several bugs #1 2023-01-07 11:10:04 +01:00
.gitmodules Added submodules with the spec and the mycology test suite 2021-10-07 18:24:48 +02:00
config.nims Added release build flags 2021-10-09 11:16:36 +02:00
LICENSE Initial import 2021-09-29 23:23:57 +02:00
nimfunge98.nimble Fixed USAGE and readme that no longer reflected correct program invocation 2021-10-17 23:52:48 +02:00
README.md Fixed readme entry about code coverage 2021-10-22 18:45:20 +02:00

NimFunge98 : a Funge-98 interpreter written in nim

This repository contains code for a nim program that can interpret a valid Funge-98 program. It passes the mycology test suite.

Current limitations are :

  • 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
  • does not implement system execution with the = command

Contents

Dependencies

nim is required. Only nim version >= 1.4.8 on linux amd64 (Gentoo) is being regularly tested.

Quick Install

To install, clone this repository then run :

nimble install

Usage

Launching the interpreter is as simple as :

nimfunge98 something.b98

The interpreter will then load and execute the specified Funge-98 program until the program normally terminates or is interrupted or killed.

Building

For a debug build, use :

nimble build

For a release build, use :

nimble build -d:release

Running tests

To run unit tests, use :

nimble tests

To run tests only on (for example) the stack module, use :

nim r tests/stack.nim

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