├── .gitattributes ├── .github └── workflows │ ├── c-cpp.yml │ └── test.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── doc ├── README_zh.md ├── benchmark.md ├── dev.md ├── dev_zh.md ├── gif │ ├── dbg.gif │ ├── error.gif │ ├── help.gif │ ├── opcode.gif │ └── stackoverflow.gif ├── namespace.md ├── nasal-http-test-web.html ├── nasal.ebnf ├── pic │ ├── benchmark.png │ ├── burningship.png │ ├── burningship_reverse.png │ ├── favicon.ico │ ├── feigenbaum.png │ ├── header.png │ ├── juliaset.png │ ├── mandelbrot.png │ ├── mandelbrotset.png │ ├── mandelbrotset_reverse.png │ ├── nasal.png │ └── social.png ├── svg │ ├── nasal.svg │ └── nasal_transparent.svg ├── tutorial.md ├── tutorial_zh.md └── windows-build.md ├── makefile ├── module ├── fib.cpp ├── keyboard.cpp ├── libfib.nas ├── libkey.nas ├── libmat.nas ├── libnasock.nas ├── makefile ├── matrix.cpp └── nasocket.cpp ├── nasal-web-app ├── package.json ├── public │ ├── index.html │ ├── repl.html │ └── repl.js ├── server.js ├── server_repl.js └── std ├── src ├── ast_dumper.cpp ├── ast_dumper.h ├── ast_format.cpp ├── ast_format.h ├── ast_visitor.cpp ├── ast_visitor.h ├── cli │ ├── cli.cpp │ └── cli.h ├── format.cpp ├── main.cpp ├── nasal.h ├── nasal_ast.cpp ├── nasal_ast.h ├── nasal_codegen.cpp ├── nasal_codegen.h ├── nasal_dbg.cpp ├── nasal_dbg.h ├── nasal_err.cpp ├── nasal_err.h ├── nasal_gc.cpp ├── nasal_gc.h ├── nasal_import.cpp ├── nasal_import.h ├── nasal_lexer.cpp ├── nasal_lexer.h ├── nasal_opcode.cpp ├── nasal_opcode.h ├── nasal_parse.cpp ├── nasal_parse.h ├── nasal_type.cpp ├── nasal_type.h ├── nasal_vm.cpp ├── nasal_vm.h ├── nasal_web.cpp ├── nasal_web.h ├── natives │ ├── bits_lib.cpp │ ├── bits_lib.h │ ├── builtin.cpp │ ├── builtin.h │ ├── coroutine.cpp │ ├── coroutine.h │ ├── dylib_lib.cpp │ ├── dylib_lib.h │ ├── fg_props.cpp │ ├── fg_props.h │ ├── io_lib.cpp │ ├── io_lib.h │ ├── json_lib.cpp │ ├── json_lib.h │ ├── math_lib.cpp │ ├── math_lib.h │ ├── regex_lib.cpp │ ├── regex_lib.h │ ├── subprocess.cpp │ ├── subprocess.h │ ├── unix_lib.cpp │ └── unix_lib.h ├── optimizer.cpp ├── optimizer.h ├── repl │ ├── repl.cpp │ └── repl.h ├── symbol_finder.cpp ├── symbol_finder.h └── util │ ├── fs.cpp │ ├── fs.h │ ├── gc_stat.cpp │ ├── gc_stat.h │ ├── util.cpp │ └── util.h ├── std ├── argparse.nas ├── bits.nas ├── coroutine.nas ├── csv.nas ├── dylib.nas ├── fg_env.nas ├── file.nas ├── io.nas ├── json.nas ├── lib.nas ├── list.nas ├── log.nas ├── mat.nas ├── math.nas ├── module.nas ├── os.nas ├── padding.nas ├── phi.nas ├── process_bar.nas ├── props.nas ├── queue.nas ├── regex.nas ├── result.nas ├── runtime.nas ├── stack.nas ├── string.nas ├── subprocess.nas ├── udp.nas ├── unix.nas └── utils.nas ├── test ├── andy_gc_test.nas ├── argparse_test.nas ├── ascii-art.nas ├── auto_crash.nas ├── backtrace │ └── empty_callsite.nas ├── bf.nas ├── bfconvertor.nas ├── bfs.nas ├── bigloop.nas ├── bp.nas ├── burningship.nas ├── calc.nas ├── choice.nas ├── class.nas ├── console3D.nas ├── coroutine.nas ├── datalog.nas ├── diff.nas ├── donuts.nas ├── exception.nas ├── feigenbaum.nas ├── fib.nas ├── filesystem.nas ├── flush_screen.nas ├── for_subprocess_test │ └── infinite_loop.nas ├── gc_test.nas ├── globals_test.nas ├── hexdump.nas ├── httptest.nas ├── json.nas ├── jsonrpc.nas ├── juliaset.nas ├── langtons-ant.nas ├── leetcode1319.nas ├── lexer.nas ├── life.nas ├── loop.nas ├── mandelbrot.nas ├── mandelbrotset.nas ├── mcpu.nas ├── md5_self.nas ├── md5compare.nas ├── module_test.nas ├── nasal_test.nas ├── occupation.nas ├── pi.nas ├── prime.nas ├── qrcode.nas ├── quick_sort.nas ├── regex_test.nas ├── replace_test.nas ├── sample.nas ├── scalar.nas ├── self_ref_module │ ├── a.nas │ ├── b.nas │ ├── c.nas │ └── main.nas ├── snake.nas ├── special_call_trace.nas ├── subprocess_test.nas ├── tetris.nas ├── trait.nas ├── tui.nas ├── turingmachine.nas ├── udptest.nas ├── utf8chk.nas ├── watchdog.nas ├── wavecity.nas ├── wavecollapse.nas ├── word_collector.nas └── ycombinator.nas └── tools ├── compiling_test.nas ├── fgfs_props_getter.nas ├── file2ppm.nas ├── find_clang.nas ├── mingw_move_file.py ├── msvc_move_file.py ├── pack.py ├── push.nas └── search_file.nas /.gitattributes: -------------------------------------------------------------------------------- 1 | *.nas linguist-language=Nasal -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/README.md -------------------------------------------------------------------------------- /doc/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/README_zh.md -------------------------------------------------------------------------------- /doc/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/benchmark.md -------------------------------------------------------------------------------- /doc/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/dev.md -------------------------------------------------------------------------------- /doc/dev_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/dev_zh.md -------------------------------------------------------------------------------- /doc/gif/dbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/gif/dbg.gif -------------------------------------------------------------------------------- /doc/gif/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/gif/error.gif -------------------------------------------------------------------------------- /doc/gif/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/gif/help.gif -------------------------------------------------------------------------------- /doc/gif/opcode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/gif/opcode.gif -------------------------------------------------------------------------------- /doc/gif/stackoverflow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/gif/stackoverflow.gif -------------------------------------------------------------------------------- /doc/namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/namespace.md -------------------------------------------------------------------------------- /doc/nasal-http-test-web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/nasal-http-test-web.html -------------------------------------------------------------------------------- /doc/nasal.ebnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/nasal.ebnf -------------------------------------------------------------------------------- /doc/pic/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/benchmark.png -------------------------------------------------------------------------------- /doc/pic/burningship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/burningship.png -------------------------------------------------------------------------------- /doc/pic/burningship_reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/burningship_reverse.png -------------------------------------------------------------------------------- /doc/pic/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/favicon.ico -------------------------------------------------------------------------------- /doc/pic/feigenbaum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/feigenbaum.png -------------------------------------------------------------------------------- /doc/pic/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/header.png -------------------------------------------------------------------------------- /doc/pic/juliaset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/juliaset.png -------------------------------------------------------------------------------- /doc/pic/mandelbrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/mandelbrot.png -------------------------------------------------------------------------------- /doc/pic/mandelbrotset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/mandelbrotset.png -------------------------------------------------------------------------------- /doc/pic/mandelbrotset_reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/mandelbrotset_reverse.png -------------------------------------------------------------------------------- /doc/pic/nasal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/nasal.png -------------------------------------------------------------------------------- /doc/pic/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/pic/social.png -------------------------------------------------------------------------------- /doc/svg/nasal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/svg/nasal.svg -------------------------------------------------------------------------------- /doc/svg/nasal_transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/svg/nasal_transparent.svg -------------------------------------------------------------------------------- /doc/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/tutorial.md -------------------------------------------------------------------------------- /doc/tutorial_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/tutorial_zh.md -------------------------------------------------------------------------------- /doc/windows-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/doc/windows-build.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/makefile -------------------------------------------------------------------------------- /module/fib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/module/fib.cpp -------------------------------------------------------------------------------- /module/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/module/keyboard.cpp -------------------------------------------------------------------------------- /module/libfib.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/module/libfib.nas -------------------------------------------------------------------------------- /module/libkey.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/module/libkey.nas -------------------------------------------------------------------------------- /module/libmat.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/module/libmat.nas -------------------------------------------------------------------------------- /module/libnasock.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/module/libnasock.nas -------------------------------------------------------------------------------- /module/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/module/makefile -------------------------------------------------------------------------------- /module/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/module/matrix.cpp -------------------------------------------------------------------------------- /module/nasocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/module/nasocket.cpp -------------------------------------------------------------------------------- /nasal-web-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/nasal-web-app/package.json -------------------------------------------------------------------------------- /nasal-web-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/nasal-web-app/public/index.html -------------------------------------------------------------------------------- /nasal-web-app/public/repl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/nasal-web-app/public/repl.html -------------------------------------------------------------------------------- /nasal-web-app/public/repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/nasal-web-app/public/repl.js -------------------------------------------------------------------------------- /nasal-web-app/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/nasal-web-app/server.js -------------------------------------------------------------------------------- /nasal-web-app/server_repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/nasal-web-app/server_repl.js -------------------------------------------------------------------------------- /nasal-web-app/std: -------------------------------------------------------------------------------- 1 | ../std -------------------------------------------------------------------------------- /src/ast_dumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/ast_dumper.cpp -------------------------------------------------------------------------------- /src/ast_dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/ast_dumper.h -------------------------------------------------------------------------------- /src/ast_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/ast_format.cpp -------------------------------------------------------------------------------- /src/ast_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/ast_format.h -------------------------------------------------------------------------------- /src/ast_visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/ast_visitor.cpp -------------------------------------------------------------------------------- /src/ast_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/ast_visitor.h -------------------------------------------------------------------------------- /src/cli/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/cli/cli.cpp -------------------------------------------------------------------------------- /src/cli/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/cli/cli.h -------------------------------------------------------------------------------- /src/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/format.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/nasal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal.h -------------------------------------------------------------------------------- /src/nasal_ast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_ast.cpp -------------------------------------------------------------------------------- /src/nasal_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_ast.h -------------------------------------------------------------------------------- /src/nasal_codegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_codegen.cpp -------------------------------------------------------------------------------- /src/nasal_codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_codegen.h -------------------------------------------------------------------------------- /src/nasal_dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_dbg.cpp -------------------------------------------------------------------------------- /src/nasal_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_dbg.h -------------------------------------------------------------------------------- /src/nasal_err.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_err.cpp -------------------------------------------------------------------------------- /src/nasal_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_err.h -------------------------------------------------------------------------------- /src/nasal_gc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_gc.cpp -------------------------------------------------------------------------------- /src/nasal_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_gc.h -------------------------------------------------------------------------------- /src/nasal_import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_import.cpp -------------------------------------------------------------------------------- /src/nasal_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_import.h -------------------------------------------------------------------------------- /src/nasal_lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_lexer.cpp -------------------------------------------------------------------------------- /src/nasal_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_lexer.h -------------------------------------------------------------------------------- /src/nasal_opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_opcode.cpp -------------------------------------------------------------------------------- /src/nasal_opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_opcode.h -------------------------------------------------------------------------------- /src/nasal_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_parse.cpp -------------------------------------------------------------------------------- /src/nasal_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_parse.h -------------------------------------------------------------------------------- /src/nasal_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_type.cpp -------------------------------------------------------------------------------- /src/nasal_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_type.h -------------------------------------------------------------------------------- /src/nasal_vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_vm.cpp -------------------------------------------------------------------------------- /src/nasal_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_vm.h -------------------------------------------------------------------------------- /src/nasal_web.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_web.cpp -------------------------------------------------------------------------------- /src/nasal_web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/nasal_web.h -------------------------------------------------------------------------------- /src/natives/bits_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/bits_lib.cpp -------------------------------------------------------------------------------- /src/natives/bits_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/bits_lib.h -------------------------------------------------------------------------------- /src/natives/builtin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/builtin.cpp -------------------------------------------------------------------------------- /src/natives/builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/builtin.h -------------------------------------------------------------------------------- /src/natives/coroutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/coroutine.cpp -------------------------------------------------------------------------------- /src/natives/coroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/coroutine.h -------------------------------------------------------------------------------- /src/natives/dylib_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/dylib_lib.cpp -------------------------------------------------------------------------------- /src/natives/dylib_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/dylib_lib.h -------------------------------------------------------------------------------- /src/natives/fg_props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/fg_props.cpp -------------------------------------------------------------------------------- /src/natives/fg_props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/fg_props.h -------------------------------------------------------------------------------- /src/natives/io_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/io_lib.cpp -------------------------------------------------------------------------------- /src/natives/io_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/io_lib.h -------------------------------------------------------------------------------- /src/natives/json_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/json_lib.cpp -------------------------------------------------------------------------------- /src/natives/json_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/json_lib.h -------------------------------------------------------------------------------- /src/natives/math_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/math_lib.cpp -------------------------------------------------------------------------------- /src/natives/math_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/math_lib.h -------------------------------------------------------------------------------- /src/natives/regex_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/regex_lib.cpp -------------------------------------------------------------------------------- /src/natives/regex_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/regex_lib.h -------------------------------------------------------------------------------- /src/natives/subprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/subprocess.cpp -------------------------------------------------------------------------------- /src/natives/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/subprocess.h -------------------------------------------------------------------------------- /src/natives/unix_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/unix_lib.cpp -------------------------------------------------------------------------------- /src/natives/unix_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/natives/unix_lib.h -------------------------------------------------------------------------------- /src/optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/optimizer.cpp -------------------------------------------------------------------------------- /src/optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/optimizer.h -------------------------------------------------------------------------------- /src/repl/repl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/repl/repl.cpp -------------------------------------------------------------------------------- /src/repl/repl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/repl/repl.h -------------------------------------------------------------------------------- /src/symbol_finder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/symbol_finder.cpp -------------------------------------------------------------------------------- /src/symbol_finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/symbol_finder.h -------------------------------------------------------------------------------- /src/util/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/util/fs.cpp -------------------------------------------------------------------------------- /src/util/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/util/fs.h -------------------------------------------------------------------------------- /src/util/gc_stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/util/gc_stat.cpp -------------------------------------------------------------------------------- /src/util/gc_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/util/gc_stat.h -------------------------------------------------------------------------------- /src/util/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/util/util.cpp -------------------------------------------------------------------------------- /src/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/src/util/util.h -------------------------------------------------------------------------------- /std/argparse.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/argparse.nas -------------------------------------------------------------------------------- /std/bits.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/bits.nas -------------------------------------------------------------------------------- /std/coroutine.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/coroutine.nas -------------------------------------------------------------------------------- /std/csv.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/csv.nas -------------------------------------------------------------------------------- /std/dylib.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/dylib.nas -------------------------------------------------------------------------------- /std/fg_env.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/fg_env.nas -------------------------------------------------------------------------------- /std/file.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/file.nas -------------------------------------------------------------------------------- /std/io.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/io.nas -------------------------------------------------------------------------------- /std/json.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/json.nas -------------------------------------------------------------------------------- /std/lib.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/lib.nas -------------------------------------------------------------------------------- /std/list.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/list.nas -------------------------------------------------------------------------------- /std/log.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/log.nas -------------------------------------------------------------------------------- /std/mat.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/mat.nas -------------------------------------------------------------------------------- /std/math.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/math.nas -------------------------------------------------------------------------------- /std/module.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/module.nas -------------------------------------------------------------------------------- /std/os.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/os.nas -------------------------------------------------------------------------------- /std/padding.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/padding.nas -------------------------------------------------------------------------------- /std/phi.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/phi.nas -------------------------------------------------------------------------------- /std/process_bar.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/process_bar.nas -------------------------------------------------------------------------------- /std/props.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/props.nas -------------------------------------------------------------------------------- /std/queue.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/queue.nas -------------------------------------------------------------------------------- /std/regex.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/regex.nas -------------------------------------------------------------------------------- /std/result.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/result.nas -------------------------------------------------------------------------------- /std/runtime.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/runtime.nas -------------------------------------------------------------------------------- /std/stack.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/stack.nas -------------------------------------------------------------------------------- /std/string.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/string.nas -------------------------------------------------------------------------------- /std/subprocess.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/subprocess.nas -------------------------------------------------------------------------------- /std/udp.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/udp.nas -------------------------------------------------------------------------------- /std/unix.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/unix.nas -------------------------------------------------------------------------------- /std/utils.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/std/utils.nas -------------------------------------------------------------------------------- /test/andy_gc_test.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/andy_gc_test.nas -------------------------------------------------------------------------------- /test/argparse_test.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/argparse_test.nas -------------------------------------------------------------------------------- /test/ascii-art.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/ascii-art.nas -------------------------------------------------------------------------------- /test/auto_crash.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/auto_crash.nas -------------------------------------------------------------------------------- /test/backtrace/empty_callsite.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/backtrace/empty_callsite.nas -------------------------------------------------------------------------------- /test/bf.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/bf.nas -------------------------------------------------------------------------------- /test/bfconvertor.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/bfconvertor.nas -------------------------------------------------------------------------------- /test/bfs.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/bfs.nas -------------------------------------------------------------------------------- /test/bigloop.nas: -------------------------------------------------------------------------------- 1 | for (var i=0;i<4e6;i+=1); 2 | -------------------------------------------------------------------------------- /test/bp.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/bp.nas -------------------------------------------------------------------------------- /test/burningship.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/burningship.nas -------------------------------------------------------------------------------- /test/calc.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/calc.nas -------------------------------------------------------------------------------- /test/choice.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/choice.nas -------------------------------------------------------------------------------- /test/class.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/class.nas -------------------------------------------------------------------------------- /test/console3D.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/console3D.nas -------------------------------------------------------------------------------- /test/coroutine.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/coroutine.nas -------------------------------------------------------------------------------- /test/datalog.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/datalog.nas -------------------------------------------------------------------------------- /test/diff.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/diff.nas -------------------------------------------------------------------------------- /test/donuts.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/donuts.nas -------------------------------------------------------------------------------- /test/exception.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/exception.nas -------------------------------------------------------------------------------- /test/feigenbaum.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/feigenbaum.nas -------------------------------------------------------------------------------- /test/fib.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/fib.nas -------------------------------------------------------------------------------- /test/filesystem.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/filesystem.nas -------------------------------------------------------------------------------- /test/flush_screen.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/flush_screen.nas -------------------------------------------------------------------------------- /test/for_subprocess_test/infinite_loop.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/for_subprocess_test/infinite_loop.nas -------------------------------------------------------------------------------- /test/gc_test.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/gc_test.nas -------------------------------------------------------------------------------- /test/globals_test.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/globals_test.nas -------------------------------------------------------------------------------- /test/hexdump.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/hexdump.nas -------------------------------------------------------------------------------- /test/httptest.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/httptest.nas -------------------------------------------------------------------------------- /test/json.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/json.nas -------------------------------------------------------------------------------- /test/jsonrpc.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/jsonrpc.nas -------------------------------------------------------------------------------- /test/juliaset.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/juliaset.nas -------------------------------------------------------------------------------- /test/langtons-ant.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/langtons-ant.nas -------------------------------------------------------------------------------- /test/leetcode1319.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/leetcode1319.nas -------------------------------------------------------------------------------- /test/lexer.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/lexer.nas -------------------------------------------------------------------------------- /test/life.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/life.nas -------------------------------------------------------------------------------- /test/loop.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/loop.nas -------------------------------------------------------------------------------- /test/mandelbrot.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/mandelbrot.nas -------------------------------------------------------------------------------- /test/mandelbrotset.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/mandelbrotset.nas -------------------------------------------------------------------------------- /test/mcpu.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/mcpu.nas -------------------------------------------------------------------------------- /test/md5_self.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/md5_self.nas -------------------------------------------------------------------------------- /test/md5compare.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/md5compare.nas -------------------------------------------------------------------------------- /test/module_test.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/module_test.nas -------------------------------------------------------------------------------- /test/nasal_test.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/nasal_test.nas -------------------------------------------------------------------------------- /test/occupation.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/occupation.nas -------------------------------------------------------------------------------- /test/pi.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/pi.nas -------------------------------------------------------------------------------- /test/prime.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/prime.nas -------------------------------------------------------------------------------- /test/qrcode.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/qrcode.nas -------------------------------------------------------------------------------- /test/quick_sort.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/quick_sort.nas -------------------------------------------------------------------------------- /test/regex_test.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/regex_test.nas -------------------------------------------------------------------------------- /test/replace_test.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/replace_test.nas -------------------------------------------------------------------------------- /test/sample.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/sample.nas -------------------------------------------------------------------------------- /test/scalar.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/scalar.nas -------------------------------------------------------------------------------- /test/self_ref_module/a.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/self_ref_module/a.nas -------------------------------------------------------------------------------- /test/self_ref_module/b.nas: -------------------------------------------------------------------------------- 1 | use a; 2 | 3 | println("init b"); -------------------------------------------------------------------------------- /test/self_ref_module/c.nas: -------------------------------------------------------------------------------- 1 | use b; 2 | 3 | println("init c"); -------------------------------------------------------------------------------- /test/self_ref_module/main.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/self_ref_module/main.nas -------------------------------------------------------------------------------- /test/snake.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/snake.nas -------------------------------------------------------------------------------- /test/special_call_trace.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/special_call_trace.nas -------------------------------------------------------------------------------- /test/subprocess_test.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/subprocess_test.nas -------------------------------------------------------------------------------- /test/tetris.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/tetris.nas -------------------------------------------------------------------------------- /test/trait.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/trait.nas -------------------------------------------------------------------------------- /test/tui.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/tui.nas -------------------------------------------------------------------------------- /test/turingmachine.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/turingmachine.nas -------------------------------------------------------------------------------- /test/udptest.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/udptest.nas -------------------------------------------------------------------------------- /test/utf8chk.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/utf8chk.nas -------------------------------------------------------------------------------- /test/watchdog.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/watchdog.nas -------------------------------------------------------------------------------- /test/wavecity.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/wavecity.nas -------------------------------------------------------------------------------- /test/wavecollapse.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/wavecollapse.nas -------------------------------------------------------------------------------- /test/word_collector.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/word_collector.nas -------------------------------------------------------------------------------- /test/ycombinator.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/test/ycombinator.nas -------------------------------------------------------------------------------- /tools/compiling_test.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/tools/compiling_test.nas -------------------------------------------------------------------------------- /tools/fgfs_props_getter.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/tools/fgfs_props_getter.nas -------------------------------------------------------------------------------- /tools/file2ppm.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/tools/file2ppm.nas -------------------------------------------------------------------------------- /tools/find_clang.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/tools/find_clang.nas -------------------------------------------------------------------------------- /tools/mingw_move_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/tools/mingw_move_file.py -------------------------------------------------------------------------------- /tools/msvc_move_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/tools/msvc_move_file.py -------------------------------------------------------------------------------- /tools/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/tools/pack.py -------------------------------------------------------------------------------- /tools/push.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/tools/push.nas -------------------------------------------------------------------------------- /tools/search_file.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValKmjolnir/Nasal-Interpreter/HEAD/tools/search_file.nas --------------------------------------------------------------------------------