├── .github └── workflows │ ├── main.yml │ └── website.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── factorial.jpl ├── fib.jpl └── syntax.jpl ├── resources ├── japl.kak ├── japl.nanorc ├── japl.vim │ ├── ftdetect │ │ └── japl.vim │ ├── ftplugin │ │ └── japl.vim │ ├── indent │ │ └── japl.vim │ └── syntax │ │ └── japl.vim └── profiles │ ├── debug_all.json │ ├── debug_alloc.json │ ├── debug_compiler.json │ ├── debug_gc.json │ ├── debug_japl.json │ ├── debug_vm.json │ ├── development.json │ └── production.json ├── src ├── compiler.nim ├── japl.nim ├── lexer.nim ├── memory.nim ├── meta │ ├── frame.nim │ ├── looptype.nim │ ├── opcode.nim │ └── token.nim ├── multibyte.nim ├── stdlib.nim ├── tools │ ├── README.md │ └── importmap.nim ├── types │ ├── arrayList.nim │ ├── baseObject.nim │ ├── boolean.nim │ ├── exception.nim │ ├── function.nim │ ├── hashMap.nim │ ├── iterable.nim │ ├── japlNil.nim │ ├── japlString.nim │ ├── methods.nim │ ├── native.nim │ ├── numbers.nim │ ├── simpleHashMap.nim │ └── typeutils.nim ├── util │ └── debug.nim └── vm.nim └── tests ├── japl ├── all.jpl ├── arithmetic.jpl ├── assignexpr.jpl ├── bitwise.jpl ├── booleans.jpl ├── break.jpl ├── callchain.jpl ├── comparisons.jpl ├── compile_time_interning.jpl ├── defaults.jpl ├── errors │ ├── read_in_own_init.jpl │ ├── undefname.jpl │ └── unsup_binary_intstr.jpl ├── euler │ ├── problem1.jpl │ ├── problem2.jpl │ └── problem4.jpl ├── fib.jpl ├── for.jpl ├── for_with_function.jpl ├── hellojapl.jpl ├── if.jpl ├── ifchain.jpl ├── input.jpl ├── is.jpl ├── lambdas.jpl ├── longs │ ├── constant_long.jpl │ ├── globAssgnRead.jpl │ ├── globWithSets.jpl │ ├── locAssgnRead.jpl │ └── locWithSets.jpl ├── meta │ ├── empty.jpl │ ├── mixed.jpl │ ├── nw.jpl │ ├── raw.jpl │ └── skip.jpl ├── nan.jpl ├── nested.jpl ├── procedures.jpl ├── reassignment.jpl ├── runtime_interning.jpl ├── shadowing.jpl ├── strings.jpl ├── vars.jpl └── while.jpl ├── jatr.nim ├── jats.nim ├── localization.nim ├── logutils.nim ├── makelongtests.nim ├── maketest.nim ├── nim ├── multibyte.nim └── nimtests.nim ├── testbuilder.nim ├── testconfig.nim ├── testeval.nim ├── testmarkup.md ├── testobject.nim └── testrun.nim /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/README.md -------------------------------------------------------------------------------- /examples/factorial.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/examples/factorial.jpl -------------------------------------------------------------------------------- /examples/fib.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/examples/fib.jpl -------------------------------------------------------------------------------- /examples/syntax.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/examples/syntax.jpl -------------------------------------------------------------------------------- /resources/japl.kak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/japl.kak -------------------------------------------------------------------------------- /resources/japl.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/japl.nanorc -------------------------------------------------------------------------------- /resources/japl.vim/ftdetect/japl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/japl.vim/ftdetect/japl.vim -------------------------------------------------------------------------------- /resources/japl.vim/ftplugin/japl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/japl.vim/ftplugin/japl.vim -------------------------------------------------------------------------------- /resources/japl.vim/indent/japl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/japl.vim/indent/japl.vim -------------------------------------------------------------------------------- /resources/japl.vim/syntax/japl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/japl.vim/syntax/japl.vim -------------------------------------------------------------------------------- /resources/profiles/debug_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/profiles/debug_all.json -------------------------------------------------------------------------------- /resources/profiles/debug_alloc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/profiles/debug_alloc.json -------------------------------------------------------------------------------- /resources/profiles/debug_compiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/profiles/debug_compiler.json -------------------------------------------------------------------------------- /resources/profiles/debug_gc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/profiles/debug_gc.json -------------------------------------------------------------------------------- /resources/profiles/debug_japl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/profiles/debug_japl.json -------------------------------------------------------------------------------- /resources/profiles/debug_vm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/profiles/debug_vm.json -------------------------------------------------------------------------------- /resources/profiles/development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/profiles/development.json -------------------------------------------------------------------------------- /resources/profiles/production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/resources/profiles/production.json -------------------------------------------------------------------------------- /src/compiler.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/compiler.nim -------------------------------------------------------------------------------- /src/japl.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/japl.nim -------------------------------------------------------------------------------- /src/lexer.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/lexer.nim -------------------------------------------------------------------------------- /src/memory.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/memory.nim -------------------------------------------------------------------------------- /src/meta/frame.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/meta/frame.nim -------------------------------------------------------------------------------- /src/meta/looptype.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/meta/looptype.nim -------------------------------------------------------------------------------- /src/meta/opcode.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/meta/opcode.nim -------------------------------------------------------------------------------- /src/meta/token.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/meta/token.nim -------------------------------------------------------------------------------- /src/multibyte.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/multibyte.nim -------------------------------------------------------------------------------- /src/stdlib.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/stdlib.nim -------------------------------------------------------------------------------- /src/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/tools/README.md -------------------------------------------------------------------------------- /src/tools/importmap.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/tools/importmap.nim -------------------------------------------------------------------------------- /src/types/arrayList.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/arrayList.nim -------------------------------------------------------------------------------- /src/types/baseObject.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/baseObject.nim -------------------------------------------------------------------------------- /src/types/boolean.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/boolean.nim -------------------------------------------------------------------------------- /src/types/exception.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/exception.nim -------------------------------------------------------------------------------- /src/types/function.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/function.nim -------------------------------------------------------------------------------- /src/types/hashMap.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/hashMap.nim -------------------------------------------------------------------------------- /src/types/iterable.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/iterable.nim -------------------------------------------------------------------------------- /src/types/japlNil.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/japlNil.nim -------------------------------------------------------------------------------- /src/types/japlString.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/japlString.nim -------------------------------------------------------------------------------- /src/types/methods.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/methods.nim -------------------------------------------------------------------------------- /src/types/native.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/native.nim -------------------------------------------------------------------------------- /src/types/numbers.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/numbers.nim -------------------------------------------------------------------------------- /src/types/simpleHashMap.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/simpleHashMap.nim -------------------------------------------------------------------------------- /src/types/typeutils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/types/typeutils.nim -------------------------------------------------------------------------------- /src/util/debug.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/util/debug.nim -------------------------------------------------------------------------------- /src/vm.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/src/vm.nim -------------------------------------------------------------------------------- /tests/japl/all.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/all.jpl -------------------------------------------------------------------------------- /tests/japl/arithmetic.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/arithmetic.jpl -------------------------------------------------------------------------------- /tests/japl/assignexpr.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/assignexpr.jpl -------------------------------------------------------------------------------- /tests/japl/bitwise.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/bitwise.jpl -------------------------------------------------------------------------------- /tests/japl/booleans.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/booleans.jpl -------------------------------------------------------------------------------- /tests/japl/break.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/break.jpl -------------------------------------------------------------------------------- /tests/japl/callchain.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/callchain.jpl -------------------------------------------------------------------------------- /tests/japl/comparisons.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/comparisons.jpl -------------------------------------------------------------------------------- /tests/japl/compile_time_interning.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/compile_time_interning.jpl -------------------------------------------------------------------------------- /tests/japl/defaults.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/defaults.jpl -------------------------------------------------------------------------------- /tests/japl/errors/read_in_own_init.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/errors/read_in_own_init.jpl -------------------------------------------------------------------------------- /tests/japl/errors/undefname.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/errors/undefname.jpl -------------------------------------------------------------------------------- /tests/japl/errors/unsup_binary_intstr.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/errors/unsup_binary_intstr.jpl -------------------------------------------------------------------------------- /tests/japl/euler/problem1.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/euler/problem1.jpl -------------------------------------------------------------------------------- /tests/japl/euler/problem2.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/euler/problem2.jpl -------------------------------------------------------------------------------- /tests/japl/euler/problem4.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/euler/problem4.jpl -------------------------------------------------------------------------------- /tests/japl/fib.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/fib.jpl -------------------------------------------------------------------------------- /tests/japl/for.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/for.jpl -------------------------------------------------------------------------------- /tests/japl/for_with_function.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/for_with_function.jpl -------------------------------------------------------------------------------- /tests/japl/hellojapl.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/hellojapl.jpl -------------------------------------------------------------------------------- /tests/japl/if.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/if.jpl -------------------------------------------------------------------------------- /tests/japl/ifchain.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/ifchain.jpl -------------------------------------------------------------------------------- /tests/japl/input.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/input.jpl -------------------------------------------------------------------------------- /tests/japl/is.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/is.jpl -------------------------------------------------------------------------------- /tests/japl/lambdas.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/lambdas.jpl -------------------------------------------------------------------------------- /tests/japl/longs/constant_long.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/longs/constant_long.jpl -------------------------------------------------------------------------------- /tests/japl/longs/globAssgnRead.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/longs/globAssgnRead.jpl -------------------------------------------------------------------------------- /tests/japl/longs/globWithSets.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/longs/globWithSets.jpl -------------------------------------------------------------------------------- /tests/japl/longs/locAssgnRead.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/longs/locAssgnRead.jpl -------------------------------------------------------------------------------- /tests/japl/longs/locWithSets.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/longs/locWithSets.jpl -------------------------------------------------------------------------------- /tests/japl/meta/empty.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/meta/empty.jpl -------------------------------------------------------------------------------- /tests/japl/meta/mixed.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/meta/mixed.jpl -------------------------------------------------------------------------------- /tests/japl/meta/nw.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/meta/nw.jpl -------------------------------------------------------------------------------- /tests/japl/meta/raw.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/meta/raw.jpl -------------------------------------------------------------------------------- /tests/japl/meta/skip.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/meta/skip.jpl -------------------------------------------------------------------------------- /tests/japl/nan.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/nan.jpl -------------------------------------------------------------------------------- /tests/japl/nested.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/nested.jpl -------------------------------------------------------------------------------- /tests/japl/procedures.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/procedures.jpl -------------------------------------------------------------------------------- /tests/japl/reassignment.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/reassignment.jpl -------------------------------------------------------------------------------- /tests/japl/runtime_interning.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/runtime_interning.jpl -------------------------------------------------------------------------------- /tests/japl/shadowing.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/shadowing.jpl -------------------------------------------------------------------------------- /tests/japl/strings.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/strings.jpl -------------------------------------------------------------------------------- /tests/japl/vars.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/vars.jpl -------------------------------------------------------------------------------- /tests/japl/while.jpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/japl/while.jpl -------------------------------------------------------------------------------- /tests/jatr.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/jatr.nim -------------------------------------------------------------------------------- /tests/jats.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/jats.nim -------------------------------------------------------------------------------- /tests/localization.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/localization.nim -------------------------------------------------------------------------------- /tests/logutils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/logutils.nim -------------------------------------------------------------------------------- /tests/makelongtests.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/makelongtests.nim -------------------------------------------------------------------------------- /tests/maketest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/maketest.nim -------------------------------------------------------------------------------- /tests/nim/multibyte.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/nim/multibyte.nim -------------------------------------------------------------------------------- /tests/nim/nimtests.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/nim/nimtests.nim -------------------------------------------------------------------------------- /tests/testbuilder.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/testbuilder.nim -------------------------------------------------------------------------------- /tests/testconfig.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/testconfig.nim -------------------------------------------------------------------------------- /tests/testeval.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/testeval.nim -------------------------------------------------------------------------------- /tests/testmarkup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/testmarkup.md -------------------------------------------------------------------------------- /tests/testobject.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/testobject.nim -------------------------------------------------------------------------------- /tests/testrun.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/japl-lang/japl/HEAD/tests/testrun.nim --------------------------------------------------------------------------------