├── .travis.yml ├── ACME-Bare-Metal ├── Changes ├── MANIFEST ├── Makefile.PL ├── Metal.xs ├── README ├── lib │ └── ACME │ │ └── Bare │ │ └── Metal.pm ├── ppport.h └── t │ └── ACME-Bare-Metal.t ├── COPYING.txt ├── Makefile ├── README.md ├── TODO ├── compiler ├── Makefile ├── elymas.ey ├── elymasAsm.ey ├── elymasAsmLib.ey ├── elymasAsmOps.ey ├── elymasGlobal.ey ├── elymasGlobalStr.ey ├── elymasGlobalSys.ey ├── elymasGlobalSysAsm.ey ├── elymasGlobalSysDyn.ey ├── elymasGlobalSysOpt.ey ├── elymasGlobalSysTyped.ey ├── elymasLexer.ey ├── elymasTokenize.ey ├── standard.ey └── standardClient.ey ├── doc ├── container.md ├── conventions.md ├── coroutines.md ├── err.md ├── execution.md ├── ffi.md ├── global.md ├── notes ├── parsing.md ├── quoting.md ├── scopes.md ├── server.md ├── sys.md └── tutorial.md ├── elymas.svg ├── elymas ├── Makefile ├── interpreter.ey ├── lib │ ├── bin.ey │ ├── crypt.ey │ ├── err.ey │ ├── ffi.ey │ ├── ffi │ │ ├── gl.ey │ │ ├── gtk.ey │ │ ├── pq.ey │ │ └── sdl.ey │ ├── list.ey │ ├── map.ey │ ├── math.ey │ ├── net.ey │ ├── net │ │ ├── alg.ey │ │ ├── alg │ │ │ ├── http.ey │ │ │ ├── server.ey │ │ │ └── uri.ey │ │ ├── dns.ey │ │ ├── tcp.ey │ │ └── udp.ey │ ├── parser.ey │ ├── sort.ey │ ├── sys.ey │ ├── sys │ │ ├── asmroutines.ey │ │ ├── linux.ey │ │ ├── opt.ey │ │ ├── optroutines.ey │ │ └── so.ey │ ├── tree.ey │ ├── txt.ey │ ├── utf8.ey │ ├── util.ey │ ├── wrapper.ey │ └── xml.ey ├── loaded.ey ├── memdump.ey ├── optimized.ey ├── ptracePerf │ └── perf.ey ├── shared.ey └── tree.test ├── examples ├── compiler-missing.sh ├── non-working │ ├── cross.ey │ ├── freeze.ey │ └── scopeweird.ey ├── regressions │ └── 000001.ey ├── working-compiler │ ├── abstract-right.test │ ├── apply.test │ ├── array-assign.test │ ├── array-list.test │ ├── arraycat.test │ ├── arrays.test │ ├── asm.test │ ├── auto_loop.test │ ├── bor.test │ ├── cat.test │ ├── complex-exec.test │ ├── concat.test │ ├── coroutine.test │ ├── coroutine2.test │ ├── coroutine3.test │ ├── coroutine4.test │ ├── curry-std.test │ ├── curry.test │ ├── deffd.test │ ├── defvs.test │ ├── dom.test │ ├── dom2.test │ ├── each.test │ ├── elymas.ey │ ├── elymasAsm.ey │ ├── elymasAsmLib.ey │ ├── elymasGlobal.ey │ ├── elymasLexer.ey │ ├── exec.test │ ├── fib.test │ ├── fold.test │ ├── freeze.test │ ├── freeze2.test │ ├── grammar-pre.test │ ├── grep-fast.test │ ├── grep.test │ ├── hash-set.test │ ├── include-and-macro.ey │ ├── include-and-macro.inc │ ├── include.test │ ├── int.test │ ├── io.test │ ├── keys.ey │ ├── len.test │ ├── list-spell.ey │ ├── lookup-constant.ey │ ├── lookup-dynamic.ey │ ├── lookup-static.ey │ ├── loop.test │ ├── member-functions.test │ ├── postgresql.test │ ├── qsort.test │ ├── range.test │ ├── regex.test │ ├── remaining-stack.ey │ ├── reverse.test │ ├── run_once.test │ ├── scope-emulation.test │ ├── scope-emulation2.test │ ├── scope-macro.test │ ├── scope.test │ ├── scoping.test │ ├── stackobjects.test │ ├── stackops.test │ ├── standard.ey │ ├── str.test │ ├── strcat.test │ ├── streq_autoloop.test │ ├── string.test │ ├── stringassign.test │ ├── stringexec.test │ ├── syscall.test │ ├── ternary.test │ ├── testing.test │ ├── unclean-macro.test │ └── undefined-resolution.test ├── working-loaded │ ├── bufferedServer.test │ ├── catstrarray.ey │ ├── error.test │ ├── httpServer.test │ ├── interactive-stack.test │ ├── lib │ ├── list.test │ ├── mapping.test │ ├── parser.test │ ├── sha512.test │ ├── sort.test │ ├── wrapper.test │ ├── xml.test │ └── xml.test.xml ├── working-shared │ ├── gtk.ey │ └── sdl.ey └── working │ ├── abstract-right.ey │ ├── array-assign.ey │ ├── array-list.ey │ ├── arraycat.ey │ ├── arraylimits.ey │ ├── arrays.ey │ ├── asm.ey │ ├── bor.ey │ ├── cat.ey │ ├── complex-exec.ey │ ├── concat.ey │ ├── dom.ey │ ├── each.ey │ ├── exec.ey │ ├── fib.ey │ ├── fold.ey │ ├── grep.ey │ ├── hash-set.ey │ ├── include.ey │ ├── int.ey │ ├── io.ey │ ├── len.ey │ ├── loop.ey │ ├── macro.ey │ ├── qsort.ey │ ├── range.ey │ ├── recursion.ey │ ├── regex.ey │ ├── reverse.ey │ ├── scope.ey │ ├── scoping.ey │ ├── stackops.ey │ ├── strcat.ey │ ├── streq_autoloop.ey │ ├── string.ey │ ├── suspend.ey │ ├── syscall.ey │ ├── testing.ey │ └── unscoped-function.ey ├── interpreter ├── Elymas.pm ├── ElymasAsm.pm ├── ElymasGlobal.pm ├── ElymasLinux.pm ├── ElymasSys.pm ├── Makefile └── elymas └── support └── elymas.vim /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/.travis.yml -------------------------------------------------------------------------------- /ACME-Bare-Metal/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/ACME-Bare-Metal/Changes -------------------------------------------------------------------------------- /ACME-Bare-Metal/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/ACME-Bare-Metal/MANIFEST -------------------------------------------------------------------------------- /ACME-Bare-Metal/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/ACME-Bare-Metal/Makefile.PL -------------------------------------------------------------------------------- /ACME-Bare-Metal/Metal.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/ACME-Bare-Metal/Metal.xs -------------------------------------------------------------------------------- /ACME-Bare-Metal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/ACME-Bare-Metal/README -------------------------------------------------------------------------------- /ACME-Bare-Metal/lib/ACME/Bare/Metal.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/ACME-Bare-Metal/lib/ACME/Bare/Metal.pm -------------------------------------------------------------------------------- /ACME-Bare-Metal/ppport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/ACME-Bare-Metal/ppport.h -------------------------------------------------------------------------------- /ACME-Bare-Metal/t/ACME-Bare-Metal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/ACME-Bare-Metal/t/ACME-Bare-Metal.t -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/COPYING.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/TODO -------------------------------------------------------------------------------- /compiler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/Makefile -------------------------------------------------------------------------------- /compiler/elymas.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymas.ey -------------------------------------------------------------------------------- /compiler/elymasAsm.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasAsm.ey -------------------------------------------------------------------------------- /compiler/elymasAsmLib.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasAsmLib.ey -------------------------------------------------------------------------------- /compiler/elymasAsmOps.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasAsmOps.ey -------------------------------------------------------------------------------- /compiler/elymasGlobal.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasGlobal.ey -------------------------------------------------------------------------------- /compiler/elymasGlobalStr.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasGlobalStr.ey -------------------------------------------------------------------------------- /compiler/elymasGlobalSys.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasGlobalSys.ey -------------------------------------------------------------------------------- /compiler/elymasGlobalSysAsm.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasGlobalSysAsm.ey -------------------------------------------------------------------------------- /compiler/elymasGlobalSysDyn.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasGlobalSysDyn.ey -------------------------------------------------------------------------------- /compiler/elymasGlobalSysOpt.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasGlobalSysOpt.ey -------------------------------------------------------------------------------- /compiler/elymasGlobalSysTyped.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasGlobalSysTyped.ey -------------------------------------------------------------------------------- /compiler/elymasLexer.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasLexer.ey -------------------------------------------------------------------------------- /compiler/elymasTokenize.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/elymasTokenize.ey -------------------------------------------------------------------------------- /compiler/standard.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/standard.ey -------------------------------------------------------------------------------- /compiler/standardClient.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/compiler/standardClient.ey -------------------------------------------------------------------------------- /doc/container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/container.md -------------------------------------------------------------------------------- /doc/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/conventions.md -------------------------------------------------------------------------------- /doc/coroutines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/coroutines.md -------------------------------------------------------------------------------- /doc/err.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/err.md -------------------------------------------------------------------------------- /doc/execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/execution.md -------------------------------------------------------------------------------- /doc/ffi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/ffi.md -------------------------------------------------------------------------------- /doc/global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/global.md -------------------------------------------------------------------------------- /doc/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/notes -------------------------------------------------------------------------------- /doc/parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/parsing.md -------------------------------------------------------------------------------- /doc/quoting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/quoting.md -------------------------------------------------------------------------------- /doc/scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/scopes.md -------------------------------------------------------------------------------- /doc/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/server.md -------------------------------------------------------------------------------- /doc/sys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/sys.md -------------------------------------------------------------------------------- /doc/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/doc/tutorial.md -------------------------------------------------------------------------------- /elymas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas.svg -------------------------------------------------------------------------------- /elymas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/Makefile -------------------------------------------------------------------------------- /elymas/interpreter.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/interpreter.ey -------------------------------------------------------------------------------- /elymas/lib/bin.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/bin.ey -------------------------------------------------------------------------------- /elymas/lib/crypt.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/crypt.ey -------------------------------------------------------------------------------- /elymas/lib/err.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/err.ey -------------------------------------------------------------------------------- /elymas/lib/ffi.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/ffi.ey -------------------------------------------------------------------------------- /elymas/lib/ffi/gl.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/ffi/gl.ey -------------------------------------------------------------------------------- /elymas/lib/ffi/gtk.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/ffi/gtk.ey -------------------------------------------------------------------------------- /elymas/lib/ffi/pq.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/ffi/pq.ey -------------------------------------------------------------------------------- /elymas/lib/ffi/sdl.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/ffi/sdl.ey -------------------------------------------------------------------------------- /elymas/lib/list.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/list.ey -------------------------------------------------------------------------------- /elymas/lib/map.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/map.ey -------------------------------------------------------------------------------- /elymas/lib/math.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/math.ey -------------------------------------------------------------------------------- /elymas/lib/net.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/net.ey -------------------------------------------------------------------------------- /elymas/lib/net/alg.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/net/alg.ey -------------------------------------------------------------------------------- /elymas/lib/net/alg/http.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/net/alg/http.ey -------------------------------------------------------------------------------- /elymas/lib/net/alg/server.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/net/alg/server.ey -------------------------------------------------------------------------------- /elymas/lib/net/alg/uri.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/net/alg/uri.ey -------------------------------------------------------------------------------- /elymas/lib/net/dns.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/net/dns.ey -------------------------------------------------------------------------------- /elymas/lib/net/tcp.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/net/tcp.ey -------------------------------------------------------------------------------- /elymas/lib/net/udp.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/net/udp.ey -------------------------------------------------------------------------------- /elymas/lib/parser.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/parser.ey -------------------------------------------------------------------------------- /elymas/lib/sort.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/sort.ey -------------------------------------------------------------------------------- /elymas/lib/sys.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/sys.ey -------------------------------------------------------------------------------- /elymas/lib/sys/asmroutines.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/sys/asmroutines.ey -------------------------------------------------------------------------------- /elymas/lib/sys/linux.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/sys/linux.ey -------------------------------------------------------------------------------- /elymas/lib/sys/opt.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/sys/opt.ey -------------------------------------------------------------------------------- /elymas/lib/sys/optroutines.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/sys/optroutines.ey -------------------------------------------------------------------------------- /elymas/lib/sys/so.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/sys/so.ey -------------------------------------------------------------------------------- /elymas/lib/tree.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/tree.ey -------------------------------------------------------------------------------- /elymas/lib/txt.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/txt.ey -------------------------------------------------------------------------------- /elymas/lib/utf8.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/utf8.ey -------------------------------------------------------------------------------- /elymas/lib/util.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/util.ey -------------------------------------------------------------------------------- /elymas/lib/wrapper.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/wrapper.ey -------------------------------------------------------------------------------- /elymas/lib/xml.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/lib/xml.ey -------------------------------------------------------------------------------- /elymas/loaded.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/loaded.ey -------------------------------------------------------------------------------- /elymas/memdump.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/memdump.ey -------------------------------------------------------------------------------- /elymas/optimized.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/optimized.ey -------------------------------------------------------------------------------- /elymas/ptracePerf/perf.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/ptracePerf/perf.ey -------------------------------------------------------------------------------- /elymas/shared.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/shared.ey -------------------------------------------------------------------------------- /elymas/tree.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/elymas/tree.test -------------------------------------------------------------------------------- /examples/compiler-missing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/compiler-missing.sh -------------------------------------------------------------------------------- /examples/non-working/cross.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/non-working/cross.ey -------------------------------------------------------------------------------- /examples/non-working/freeze.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/non-working/freeze.ey -------------------------------------------------------------------------------- /examples/non-working/scopeweird.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/non-working/scopeweird.ey -------------------------------------------------------------------------------- /examples/regressions/000001.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/regressions/000001.ey -------------------------------------------------------------------------------- /examples/working-compiler/abstract-right.test: -------------------------------------------------------------------------------- 1 | ../working/abstract-right.ey -------------------------------------------------------------------------------- /examples/working-compiler/apply.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/apply.test -------------------------------------------------------------------------------- /examples/working-compiler/array-assign.test: -------------------------------------------------------------------------------- 1 | ../working/array-assign.ey -------------------------------------------------------------------------------- /examples/working-compiler/array-list.test: -------------------------------------------------------------------------------- 1 | ../working/array-list.ey -------------------------------------------------------------------------------- /examples/working-compiler/arraycat.test: -------------------------------------------------------------------------------- 1 | ../working/arraycat.ey -------------------------------------------------------------------------------- /examples/working-compiler/arrays.test: -------------------------------------------------------------------------------- 1 | ../working/arrays.ey -------------------------------------------------------------------------------- /examples/working-compiler/asm.test: -------------------------------------------------------------------------------- 1 | ../working/asm.ey -------------------------------------------------------------------------------- /examples/working-compiler/auto_loop.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/auto_loop.test -------------------------------------------------------------------------------- /examples/working-compiler/bor.test: -------------------------------------------------------------------------------- 1 | ../working/bor.ey -------------------------------------------------------------------------------- /examples/working-compiler/cat.test: -------------------------------------------------------------------------------- 1 | ../working/cat.ey -------------------------------------------------------------------------------- /examples/working-compiler/complex-exec.test: -------------------------------------------------------------------------------- 1 | ../working/complex-exec.ey -------------------------------------------------------------------------------- /examples/working-compiler/concat.test: -------------------------------------------------------------------------------- 1 | ../working/concat.ey -------------------------------------------------------------------------------- /examples/working-compiler/coroutine.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/coroutine.test -------------------------------------------------------------------------------- /examples/working-compiler/coroutine2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/coroutine2.test -------------------------------------------------------------------------------- /examples/working-compiler/coroutine3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/coroutine3.test -------------------------------------------------------------------------------- /examples/working-compiler/coroutine4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/coroutine4.test -------------------------------------------------------------------------------- /examples/working-compiler/curry-std.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/curry-std.test -------------------------------------------------------------------------------- /examples/working-compiler/curry.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/curry.test -------------------------------------------------------------------------------- /examples/working-compiler/deffd.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/deffd.test -------------------------------------------------------------------------------- /examples/working-compiler/defvs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/defvs.test -------------------------------------------------------------------------------- /examples/working-compiler/dom.test: -------------------------------------------------------------------------------- 1 | ../working/dom.ey -------------------------------------------------------------------------------- /examples/working-compiler/dom2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/dom2.test -------------------------------------------------------------------------------- /examples/working-compiler/each.test: -------------------------------------------------------------------------------- 1 | ../working/each.ey -------------------------------------------------------------------------------- /examples/working-compiler/elymas.ey: -------------------------------------------------------------------------------- 1 | ../../compiler/elymas.ey -------------------------------------------------------------------------------- /examples/working-compiler/elymasAsm.ey: -------------------------------------------------------------------------------- 1 | ../../compiler/elymasAsm.ey -------------------------------------------------------------------------------- /examples/working-compiler/elymasAsmLib.ey: -------------------------------------------------------------------------------- 1 | ../../compiler/elymasAsmLib.ey -------------------------------------------------------------------------------- /examples/working-compiler/elymasGlobal.ey: -------------------------------------------------------------------------------- 1 | ../../compiler/elymasGlobal.ey -------------------------------------------------------------------------------- /examples/working-compiler/elymasLexer.ey: -------------------------------------------------------------------------------- 1 | ../../compiler/elymasLexer.ey -------------------------------------------------------------------------------- /examples/working-compiler/exec.test: -------------------------------------------------------------------------------- 1 | ../working/exec.ey -------------------------------------------------------------------------------- /examples/working-compiler/fib.test: -------------------------------------------------------------------------------- 1 | ../working/fib.ey -------------------------------------------------------------------------------- /examples/working-compiler/fold.test: -------------------------------------------------------------------------------- 1 | ../working/fold.ey -------------------------------------------------------------------------------- /examples/working-compiler/freeze.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/freeze.test -------------------------------------------------------------------------------- /examples/working-compiler/freeze2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/freeze2.test -------------------------------------------------------------------------------- /examples/working-compiler/grammar-pre.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/grammar-pre.test -------------------------------------------------------------------------------- /examples/working-compiler/grep-fast.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/grep-fast.test -------------------------------------------------------------------------------- /examples/working-compiler/grep.test: -------------------------------------------------------------------------------- 1 | ../working/grep.ey -------------------------------------------------------------------------------- /examples/working-compiler/hash-set.test: -------------------------------------------------------------------------------- 1 | ../working/hash-set.ey -------------------------------------------------------------------------------- /examples/working-compiler/include-and-macro.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/include-and-macro.ey -------------------------------------------------------------------------------- /examples/working-compiler/include-and-macro.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/include-and-macro.inc -------------------------------------------------------------------------------- /examples/working-compiler/include.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/include.test -------------------------------------------------------------------------------- /examples/working-compiler/int.test: -------------------------------------------------------------------------------- 1 | ../working/int.ey -------------------------------------------------------------------------------- /examples/working-compiler/io.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/io.test -------------------------------------------------------------------------------- /examples/working-compiler/keys.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/keys.ey -------------------------------------------------------------------------------- /examples/working-compiler/len.test: -------------------------------------------------------------------------------- 1 | ../working/len.ey -------------------------------------------------------------------------------- /examples/working-compiler/list-spell.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/list-spell.ey -------------------------------------------------------------------------------- /examples/working-compiler/lookup-constant.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/lookup-constant.ey -------------------------------------------------------------------------------- /examples/working-compiler/lookup-dynamic.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/lookup-dynamic.ey -------------------------------------------------------------------------------- /examples/working-compiler/lookup-static.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/lookup-static.ey -------------------------------------------------------------------------------- /examples/working-compiler/loop.test: -------------------------------------------------------------------------------- 1 | ../working/loop.ey -------------------------------------------------------------------------------- /examples/working-compiler/member-functions.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/member-functions.test -------------------------------------------------------------------------------- /examples/working-compiler/postgresql.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/postgresql.test -------------------------------------------------------------------------------- /examples/working-compiler/qsort.test: -------------------------------------------------------------------------------- 1 | ../working/qsort.ey -------------------------------------------------------------------------------- /examples/working-compiler/range.test: -------------------------------------------------------------------------------- 1 | ../working/range.ey -------------------------------------------------------------------------------- /examples/working-compiler/regex.test: -------------------------------------------------------------------------------- 1 | ../working/regex.ey -------------------------------------------------------------------------------- /examples/working-compiler/remaining-stack.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/remaining-stack.ey -------------------------------------------------------------------------------- /examples/working-compiler/reverse.test: -------------------------------------------------------------------------------- 1 | ../working/reverse.ey -------------------------------------------------------------------------------- /examples/working-compiler/run_once.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/run_once.test -------------------------------------------------------------------------------- /examples/working-compiler/scope-emulation.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/scope-emulation.test -------------------------------------------------------------------------------- /examples/working-compiler/scope-emulation2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/scope-emulation2.test -------------------------------------------------------------------------------- /examples/working-compiler/scope-macro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/scope-macro.test -------------------------------------------------------------------------------- /examples/working-compiler/scope.test: -------------------------------------------------------------------------------- 1 | ../working/scope.ey -------------------------------------------------------------------------------- /examples/working-compiler/scoping.test: -------------------------------------------------------------------------------- 1 | ../working/scoping.ey -------------------------------------------------------------------------------- /examples/working-compiler/stackobjects.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/stackobjects.test -------------------------------------------------------------------------------- /examples/working-compiler/stackops.test: -------------------------------------------------------------------------------- 1 | ../working/stackops.ey -------------------------------------------------------------------------------- /examples/working-compiler/standard.ey: -------------------------------------------------------------------------------- 1 | ../../compiler/standard.ey -------------------------------------------------------------------------------- /examples/working-compiler/str.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/str.test -------------------------------------------------------------------------------- /examples/working-compiler/strcat.test: -------------------------------------------------------------------------------- 1 | ../working/strcat.ey -------------------------------------------------------------------------------- /examples/working-compiler/streq_autoloop.test: -------------------------------------------------------------------------------- 1 | ../working/streq_autoloop.ey -------------------------------------------------------------------------------- /examples/working-compiler/string.test: -------------------------------------------------------------------------------- 1 | ../working/string.ey -------------------------------------------------------------------------------- /examples/working-compiler/stringassign.test: -------------------------------------------------------------------------------- 1 | "foo" ==f 2 | 64 1 f =[] 3 | f dump 4 | -------------------------------------------------------------------------------- /examples/working-compiler/stringexec.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/stringexec.test -------------------------------------------------------------------------------- /examples/working-compiler/syscall.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/syscall.test -------------------------------------------------------------------------------- /examples/working-compiler/ternary.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/ternary.test -------------------------------------------------------------------------------- /examples/working-compiler/testing.test: -------------------------------------------------------------------------------- 1 | ../working/testing.ey -------------------------------------------------------------------------------- /examples/working-compiler/unclean-macro.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/unclean-macro.test -------------------------------------------------------------------------------- /examples/working-compiler/undefined-resolution.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-compiler/undefined-resolution.test -------------------------------------------------------------------------------- /examples/working-loaded/bufferedServer.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/bufferedServer.test -------------------------------------------------------------------------------- /examples/working-loaded/catstrarray.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/catstrarray.ey -------------------------------------------------------------------------------- /examples/working-loaded/error.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/error.test -------------------------------------------------------------------------------- /examples/working-loaded/httpServer.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/httpServer.test -------------------------------------------------------------------------------- /examples/working-loaded/interactive-stack.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/interactive-stack.test -------------------------------------------------------------------------------- /examples/working-loaded/lib: -------------------------------------------------------------------------------- 1 | ../../elymas/lib -------------------------------------------------------------------------------- /examples/working-loaded/list.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/list.test -------------------------------------------------------------------------------- /examples/working-loaded/mapping.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/mapping.test -------------------------------------------------------------------------------- /examples/working-loaded/parser.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/parser.test -------------------------------------------------------------------------------- /examples/working-loaded/sha512.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/sha512.test -------------------------------------------------------------------------------- /examples/working-loaded/sort.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/sort.test -------------------------------------------------------------------------------- /examples/working-loaded/wrapper.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/wrapper.test -------------------------------------------------------------------------------- /examples/working-loaded/xml.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/xml.test -------------------------------------------------------------------------------- /examples/working-loaded/xml.test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-loaded/xml.test.xml -------------------------------------------------------------------------------- /examples/working-shared/gtk.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-shared/gtk.ey -------------------------------------------------------------------------------- /examples/working-shared/sdl.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working-shared/sdl.ey -------------------------------------------------------------------------------- /examples/working/abstract-right.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/abstract-right.ey -------------------------------------------------------------------------------- /examples/working/array-assign.ey: -------------------------------------------------------------------------------- 1 | [ 1 2 3 4 ] /a defv 2 | 0 6 a =[] 3 | 4 | a dump 5 | -------------------------------------------------------------------------------- /examples/working/array-list.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/array-list.ey -------------------------------------------------------------------------------- /examples/working/arraycat.ey: -------------------------------------------------------------------------------- 1 | [ 1 2 3 ] [ 4 5 6 ] cat dump 2 | -------------------------------------------------------------------------------- /examples/working/arraylimits.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/arraylimits.ey -------------------------------------------------------------------------------- /examples/working/arrays.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/arrays.ey -------------------------------------------------------------------------------- /examples/working/asm.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/asm.ey -------------------------------------------------------------------------------- /examples/working/bor.ey: -------------------------------------------------------------------------------- 1 | 16 2 bor dump 2 | -------------------------------------------------------------------------------- /examples/working/cat.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/cat.ey -------------------------------------------------------------------------------- /examples/working/complex-exec.ey: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env elymas 2 | 3 | 3 { 2 add } |mul -21*20* dump # should be 0000F 4 | -------------------------------------------------------------------------------- /examples/working/concat.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/concat.ey -------------------------------------------------------------------------------- /examples/working/dom.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/dom.ey -------------------------------------------------------------------------------- /examples/working/each.ey: -------------------------------------------------------------------------------- 1 | |defv "==" deff 2 | 3 | [ 1 2 3 ] { ==i i dump } each 4 | -------------------------------------------------------------------------------- /examples/working/exec.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/exec.ey -------------------------------------------------------------------------------- /examples/working/fib.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/fib.ey -------------------------------------------------------------------------------- /examples/working/fold.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/fold.ey -------------------------------------------------------------------------------- /examples/working/grep.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/grep.ey -------------------------------------------------------------------------------- /examples/working/hash-set.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/hash-set.ey -------------------------------------------------------------------------------- /examples/working/include.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/include.ey -------------------------------------------------------------------------------- /examples/working/int.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/int.ey -------------------------------------------------------------------------------- /examples/working/io.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/io.ey -------------------------------------------------------------------------------- /examples/working/len.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/len.ey -------------------------------------------------------------------------------- /examples/working/loop.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/loop.ey -------------------------------------------------------------------------------- /examples/working/macro.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/macro.ey -------------------------------------------------------------------------------- /examples/working/qsort.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/qsort.ey -------------------------------------------------------------------------------- /examples/working/range.ey: -------------------------------------------------------------------------------- 1 | 0 10 range dump 2 | -------------------------------------------------------------------------------- /examples/working/recursion.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/recursion.ey -------------------------------------------------------------------------------- /examples/working/regex.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/regex.ey -------------------------------------------------------------------------------- /examples/working/reverse.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/reverse.ey -------------------------------------------------------------------------------- /examples/working/scope.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/scope.ey -------------------------------------------------------------------------------- /examples/working/scoping.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/scoping.ey -------------------------------------------------------------------------------- /examples/working/stackops.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/stackops.ey -------------------------------------------------------------------------------- /examples/working/strcat.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/strcat.ey -------------------------------------------------------------------------------- /examples/working/streq_autoloop.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/streq_autoloop.ey -------------------------------------------------------------------------------- /examples/working/string.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/string.ey -------------------------------------------------------------------------------- /examples/working/suspend.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/suspend.ey -------------------------------------------------------------------------------- /examples/working/syscall.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/syscall.ey -------------------------------------------------------------------------------- /examples/working/testing.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/testing.ey -------------------------------------------------------------------------------- /examples/working/unscoped-function.ey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/examples/working/unscoped-function.ey -------------------------------------------------------------------------------- /interpreter/Elymas.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/interpreter/Elymas.pm -------------------------------------------------------------------------------- /interpreter/ElymasAsm.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/interpreter/ElymasAsm.pm -------------------------------------------------------------------------------- /interpreter/ElymasGlobal.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/interpreter/ElymasGlobal.pm -------------------------------------------------------------------------------- /interpreter/ElymasLinux.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/interpreter/ElymasLinux.pm -------------------------------------------------------------------------------- /interpreter/ElymasSys.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/interpreter/ElymasSys.pm -------------------------------------------------------------------------------- /interpreter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/interpreter/Makefile -------------------------------------------------------------------------------- /interpreter/elymas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/interpreter/elymas -------------------------------------------------------------------------------- /support/elymas.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drahflow/Elymas/HEAD/support/elymas.vim --------------------------------------------------------------------------------