Archived
1
0
Fork 0

Began implementing the funge field

This commit is contained in:
Julien Dessaux 2021-09-30 21:41:27 +02:00
parent 4a296c28ee
commit 9a5ff5f233
6 changed files with 135 additions and 0 deletions

24
nimfunge98.nimble Normal file
View file

@ -0,0 +1,24 @@
# Package
version = "0.1.0"
author = "Julien Dessaux"
description = "A Funge-98 interpreter written in nim"
license = "EUPL-1.2"
srcDir = "src"
bin = @["nimfunge98"]
# Dependencies
requires "nim >= 1.4.8"
# Tasks
task integration, "Runs the test suite":
exec "testament all"
task coverage, "Run all tests and calculate coverage":
exec "coco --target 'tests/**/*.nim' --cov '!tests,!nimcache'"
task clean, "Clean":
exec "rm -rf coverage lcov.info nimcache"
exec "rm -rf outputGotten.txt testresults tests/megatest tests/megatest.nim"