├── LICENSE.txt ├── README.md ├── bin └── win64 │ ├── asm.exe │ ├── inc │ ├── algs.mash │ ├── callable.mash │ ├── classes.mash │ ├── classes │ │ ├── asyncpool.mash │ │ ├── dict.mash │ │ ├── list.mash │ │ ├── map.mash │ │ ├── points.mash │ │ ├── streams.mash │ │ ├── stringlist.mash │ │ ├── threadpool.mash │ │ ├── tree.mash │ │ └── vector.mash │ ├── crt.mash │ ├── files.mash │ ├── forms.mash │ ├── graph.mash │ ├── math.mash │ ├── math │ │ ├── base.mash │ │ ├── complex.mash │ │ ├── funcs.mash │ │ ├── matrix.mash │ │ ├── plots.mash │ │ └── plots │ │ │ ├── plot2d.mash │ │ │ └── plot3d.mash │ ├── mcl │ │ ├── canvas.mash │ │ └── forms.mash │ ├── mw.mash │ ├── mw │ │ ├── answer.mash │ │ ├── cookie.mash │ │ ├── mw.mash │ │ ├── page.mash │ │ ├── page │ │ │ ├── baseobject.mash │ │ │ ├── fragment.mash │ │ │ ├── frame.mash │ │ │ └── variables.mash │ │ └── request.mash │ ├── network │ │ └── tcp.mash │ ├── sockets.mash │ ├── strings.mash │ ├── sync.mash │ ├── sys.mash │ ├── sys │ │ ├── arrays.mash │ │ ├── base.mash │ │ ├── exceptions.mash │ │ ├── imports.mash │ │ ├── initialize.mash │ │ └── poly.mash │ └── threads.mash │ ├── lib │ ├── bf.lib │ ├── crt.lib │ ├── files.lib │ ├── graph.lib │ ├── lmath.lib │ ├── mcl.lib │ ├── sockets.lib │ ├── streams.lib │ └── sync.lib │ ├── mash_ide.exe │ ├── mashc.exe │ ├── svm.lib │ ├── svmc.exe │ └── test │ ├── AsyncTest.mash │ ├── ButterFly.mash │ ├── HighLevelFunctions.mash │ ├── IntrospectionAndPolymorph.mash │ ├── LorenzAttract.mash │ ├── Map.mash │ ├── Mashc │ ├── ast │ │ ├── ast.mash │ │ ├── base │ │ │ └── ast.mash │ │ ├── blocks.mash │ │ └── expressions │ │ │ ├── ast.mash │ │ │ └── blocks.mash │ ├── compiler.mash │ ├── gen │ │ ├── gen.mash │ │ └── svm │ │ │ ├── gen.mash │ │ │ └── gen_types.mash │ ├── mashc.mash │ ├── parser │ │ ├── parser.mash │ │ └── token.mash │ └── sem │ │ └── sem.mash │ ├── MathComplexTest.mash │ ├── Nargs.mash │ ├── PolymorphTest.mash │ ├── QuickSortTest.mash │ ├── Rotation.mash │ ├── Rotation2.mash │ ├── Rotation3.mash │ ├── SimpleClass.mash │ ├── SimpleOOP.mash │ ├── Sockets.mash │ ├── Sockets_Client.mash │ ├── TestBitOps.mash │ ├── TestDot.mash │ ├── TestStream.mash │ ├── TraceBackTest.mash │ ├── arrayNxN.mash │ ├── coroutines.mash │ ├── factorial.mash │ ├── helloworld.mash │ ├── parabola.mash │ ├── snake.mash │ ├── snake │ ├── game_io.mash │ └── snake.mash │ ├── test.mash │ ├── test_mcl.mash │ ├── try.mash │ └── webapp │ ├── body.htm │ ├── index.htm │ ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── favicon.png │ └── images │ │ ├── background.jpg │ │ └── logo.png │ └── webapp.mash ├── ide ├── aboutform.lfm ├── aboutform.pas ├── adp.inc ├── dbgframe.lfm ├── dbgframe.pas ├── debugger.pas ├── editor.lfm ├── editor.pas ├── global.pas ├── mainform.lfm ├── mainform.pas ├── mash_ide.ico ├── mash_ide.lpi ├── mash_ide.lpr ├── mash_ide.lps ├── mash_ide.res ├── svm_grabber.pas └── svm_mem.pas ├── lang ├── asm │ └── svm │ │ ├── svmasm.lpi │ │ ├── svmasm.lpr │ │ ├── test │ │ ├── test1.asm │ │ ├── test1.vmc │ │ ├── test2.asm │ │ ├── test2.vmc │ │ ├── test3.asm │ │ └── test3.vmc │ │ ├── u_asm.pas │ │ ├── u_common.pas │ │ ├── u_consts.pas │ │ ├── u_imports.pas │ │ └── u_writers.pas ├── fpmashc.lpi ├── fpmashc.lpr ├── u_ast.pas ├── u_ast_blocks.pas ├── u_ast_constructions.pas ├── u_ast_constructions_blocks.pas ├── u_ast_expression.pas ├── u_ast_expression_blocks.pas ├── u_compiler.pas ├── u_gen.pas ├── u_gen_svm.pas ├── u_parser.pas ├── u_sem.pas └── u_tokens.pas └── runtime ├── libs ├── bf │ ├── bf.lpi │ └── bf.pas ├── crt │ ├── svmcrt.lpi │ └── svmcrt.pas ├── files │ ├── files.lpi │ └── files.pas ├── graph │ ├── DGraph.lpi │ ├── DGraph.pas │ └── _FP.CMD ├── math │ ├── lmath.lpi │ └── lmath.pas ├── mcl │ ├── mcl.ico │ ├── mcl.lpi │ ├── mcl.pas │ ├── mcl.res │ ├── mclform.lfm │ └── mclform.pas ├── sockets │ ├── blcksock.pas │ ├── socks.lpi │ ├── socks.pas │ ├── synacode.pas │ ├── synafpc.pas │ ├── synaip.pas │ ├── synapse │ │ ├── asn1util.pas │ │ ├── blcksock.pas │ │ ├── clamsend.pas │ │ ├── dnssend.pas │ │ ├── ftpsend.pas │ │ ├── ftptsend.pas │ │ ├── httpsend.pas │ │ ├── imapsend.pas │ │ ├── laz_synapse.lpk │ │ ├── laz_synapse.pas │ │ ├── ldapsend.pas │ │ ├── mimeinln.pas │ │ ├── mimemess.pas │ │ ├── mimepart.pas │ │ ├── nntpsend.pas │ │ ├── pingsend.pas │ │ ├── pop3send.pas │ │ ├── slogsend.pas │ │ ├── smtpsend.pas │ │ ├── snmpsend.pas │ │ ├── sntpsend.pas │ │ ├── ssdotnet.inc │ │ ├── ssfpc.inc │ │ ├── ssl_cryptlib.pas │ │ ├── ssl_openssl.pas │ │ ├── ssl_openssl_lib.pas │ │ ├── ssl_sbb.pas │ │ ├── ssl_streamsec.pas │ │ ├── sslinux.inc │ │ ├── sswin32.inc │ │ ├── synachar.pas │ │ ├── synacode.pas │ │ ├── synacrypt.pas │ │ ├── synadbg.pas │ │ ├── synafpc.pas │ │ ├── synaicnv.pas │ │ ├── synaip.pas │ │ ├── synamisc.pas │ │ ├── synaser.pas │ │ ├── synautil.pas │ │ ├── synsock.pas │ │ └── tlntsend.pas │ ├── synautil.pas │ └── synsock.pas ├── streams │ ├── streams.lpi │ └── streams.pas ├── svm.inc ├── svm.pas └── thrlib │ ├── thrlib.lpi │ └── thrlib.pas └── svm ├── core_api.inc ├── libs_api.inc ├── svm.lpi ├── svm.pas ├── svm_callbacks.pas ├── svm_common.pas ├── svm_core.pas ├── svm_exceptions.pas ├── svm_grabber.pas ├── svm_imports.pas ├── svm_libs.pas ├── svm_mem.pas ├── svm_opcodes.pas ├── svm_res.pas ├── svm_stack.pas ├── svm_threads.pas └── svm_utils.pas /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/README.md -------------------------------------------------------------------------------- /bin/win64/asm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/asm.exe -------------------------------------------------------------------------------- /bin/win64/inc/algs.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/algs.mash -------------------------------------------------------------------------------- /bin/win64/inc/callable.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/callable.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes/asyncpool.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes/asyncpool.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes/dict.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes/dict.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes/list.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes/list.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes/map.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes/map.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes/points.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes/points.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes/streams.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes/streams.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes/stringlist.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes/stringlist.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes/threadpool.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes/threadpool.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes/tree.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes/tree.mash -------------------------------------------------------------------------------- /bin/win64/inc/classes/vector.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/classes/vector.mash -------------------------------------------------------------------------------- /bin/win64/inc/crt.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/crt.mash -------------------------------------------------------------------------------- /bin/win64/inc/files.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/files.mash -------------------------------------------------------------------------------- /bin/win64/inc/forms.mash: -------------------------------------------------------------------------------- 1 | /* 2 | * MCL is a Mash Control Library 3 | */ 4 | 5 | uses mcl.forms 6 | -------------------------------------------------------------------------------- /bin/win64/inc/graph.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/graph.mash -------------------------------------------------------------------------------- /bin/win64/inc/math.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/math.mash -------------------------------------------------------------------------------- /bin/win64/inc/math/base.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/math/base.mash -------------------------------------------------------------------------------- /bin/win64/inc/math/complex.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/math/complex.mash -------------------------------------------------------------------------------- /bin/win64/inc/math/funcs.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/math/funcs.mash -------------------------------------------------------------------------------- /bin/win64/inc/math/matrix.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/math/matrix.mash -------------------------------------------------------------------------------- /bin/win64/inc/math/plots.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/math/plots.mash -------------------------------------------------------------------------------- /bin/win64/inc/math/plots/plot2d.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/math/plots/plot2d.mash -------------------------------------------------------------------------------- /bin/win64/inc/math/plots/plot3d.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/math/plots/plot3d.mash -------------------------------------------------------------------------------- /bin/win64/inc/mcl/canvas.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mcl/canvas.mash -------------------------------------------------------------------------------- /bin/win64/inc/mcl/forms.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mcl/forms.mash -------------------------------------------------------------------------------- /bin/win64/inc/mw.mash: -------------------------------------------------------------------------------- 1 | /* 2 | * Mash Web - little framework for web 3 | */ 4 | 5 | uses mw.mw 6 | -------------------------------------------------------------------------------- /bin/win64/inc/mw/answer.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mw/answer.mash -------------------------------------------------------------------------------- /bin/win64/inc/mw/cookie.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mw/cookie.mash -------------------------------------------------------------------------------- /bin/win64/inc/mw/mw.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mw/mw.mash -------------------------------------------------------------------------------- /bin/win64/inc/mw/page.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mw/page.mash -------------------------------------------------------------------------------- /bin/win64/inc/mw/page/baseobject.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mw/page/baseobject.mash -------------------------------------------------------------------------------- /bin/win64/inc/mw/page/fragment.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mw/page/fragment.mash -------------------------------------------------------------------------------- /bin/win64/inc/mw/page/frame.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mw/page/frame.mash -------------------------------------------------------------------------------- /bin/win64/inc/mw/page/variables.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mw/page/variables.mash -------------------------------------------------------------------------------- /bin/win64/inc/mw/request.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/mw/request.mash -------------------------------------------------------------------------------- /bin/win64/inc/network/tcp.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/network/tcp.mash -------------------------------------------------------------------------------- /bin/win64/inc/sockets.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/sockets.mash -------------------------------------------------------------------------------- /bin/win64/inc/strings.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/strings.mash -------------------------------------------------------------------------------- /bin/win64/inc/sync.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/sync.mash -------------------------------------------------------------------------------- /bin/win64/inc/sys.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/sys.mash -------------------------------------------------------------------------------- /bin/win64/inc/sys/arrays.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/sys/arrays.mash -------------------------------------------------------------------------------- /bin/win64/inc/sys/base.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/sys/base.mash -------------------------------------------------------------------------------- /bin/win64/inc/sys/exceptions.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/sys/exceptions.mash -------------------------------------------------------------------------------- /bin/win64/inc/sys/imports.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/sys/imports.mash -------------------------------------------------------------------------------- /bin/win64/inc/sys/initialize.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/sys/initialize.mash -------------------------------------------------------------------------------- /bin/win64/inc/sys/poly.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/sys/poly.mash -------------------------------------------------------------------------------- /bin/win64/inc/threads.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/inc/threads.mash -------------------------------------------------------------------------------- /bin/win64/lib/bf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/lib/bf.lib -------------------------------------------------------------------------------- /bin/win64/lib/crt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/lib/crt.lib -------------------------------------------------------------------------------- /bin/win64/lib/files.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/lib/files.lib -------------------------------------------------------------------------------- /bin/win64/lib/graph.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/lib/graph.lib -------------------------------------------------------------------------------- /bin/win64/lib/lmath.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/lib/lmath.lib -------------------------------------------------------------------------------- /bin/win64/lib/mcl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/lib/mcl.lib -------------------------------------------------------------------------------- /bin/win64/lib/sockets.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/lib/sockets.lib -------------------------------------------------------------------------------- /bin/win64/lib/streams.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/lib/streams.lib -------------------------------------------------------------------------------- /bin/win64/lib/sync.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/lib/sync.lib -------------------------------------------------------------------------------- /bin/win64/mash_ide.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/mash_ide.exe -------------------------------------------------------------------------------- /bin/win64/mashc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/mashc.exe -------------------------------------------------------------------------------- /bin/win64/svm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/svm.lib -------------------------------------------------------------------------------- /bin/win64/svmc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/svmc.exe -------------------------------------------------------------------------------- /bin/win64/test/AsyncTest.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/AsyncTest.mash -------------------------------------------------------------------------------- /bin/win64/test/ButterFly.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/ButterFly.mash -------------------------------------------------------------------------------- /bin/win64/test/HighLevelFunctions.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/HighLevelFunctions.mash -------------------------------------------------------------------------------- /bin/win64/test/IntrospectionAndPolymorph.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/IntrospectionAndPolymorph.mash -------------------------------------------------------------------------------- /bin/win64/test/LorenzAttract.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/LorenzAttract.mash -------------------------------------------------------------------------------- /bin/win64/test/Map.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Map.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/ast/ast.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/ast/ast.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/ast/base/ast.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/ast/base/ast.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/ast/blocks.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/ast/blocks.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/ast/expressions/ast.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/ast/expressions/ast.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/ast/expressions/blocks.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/ast/expressions/blocks.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/compiler.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/compiler.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/gen/gen.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/gen/gen.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/gen/svm/gen.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/gen/svm/gen.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/gen/svm/gen_types.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/gen/svm/gen_types.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/mashc.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/mashc.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/parser/parser.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/parser/parser.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/parser/token.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/parser/token.mash -------------------------------------------------------------------------------- /bin/win64/test/Mashc/sem/sem.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Mashc/sem/sem.mash -------------------------------------------------------------------------------- /bin/win64/test/MathComplexTest.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/MathComplexTest.mash -------------------------------------------------------------------------------- /bin/win64/test/Nargs.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Nargs.mash -------------------------------------------------------------------------------- /bin/win64/test/PolymorphTest.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/PolymorphTest.mash -------------------------------------------------------------------------------- /bin/win64/test/QuickSortTest.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/QuickSortTest.mash -------------------------------------------------------------------------------- /bin/win64/test/Rotation.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Rotation.mash -------------------------------------------------------------------------------- /bin/win64/test/Rotation2.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Rotation2.mash -------------------------------------------------------------------------------- /bin/win64/test/Rotation3.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Rotation3.mash -------------------------------------------------------------------------------- /bin/win64/test/SimpleClass.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/SimpleClass.mash -------------------------------------------------------------------------------- /bin/win64/test/SimpleOOP.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/SimpleOOP.mash -------------------------------------------------------------------------------- /bin/win64/test/Sockets.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Sockets.mash -------------------------------------------------------------------------------- /bin/win64/test/Sockets_Client.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/Sockets_Client.mash -------------------------------------------------------------------------------- /bin/win64/test/TestBitOps.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/TestBitOps.mash -------------------------------------------------------------------------------- /bin/win64/test/TestDot.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/TestDot.mash -------------------------------------------------------------------------------- /bin/win64/test/TestStream.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/TestStream.mash -------------------------------------------------------------------------------- /bin/win64/test/TraceBackTest.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/TraceBackTest.mash -------------------------------------------------------------------------------- /bin/win64/test/arrayNxN.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/arrayNxN.mash -------------------------------------------------------------------------------- /bin/win64/test/coroutines.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/coroutines.mash -------------------------------------------------------------------------------- /bin/win64/test/factorial.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/factorial.mash -------------------------------------------------------------------------------- /bin/win64/test/helloworld.mash: -------------------------------------------------------------------------------- 1 | uses crt 2 | 3 | println("Hello world!") 4 | inputln() 5 | -------------------------------------------------------------------------------- /bin/win64/test/parabola.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/parabola.mash -------------------------------------------------------------------------------- /bin/win64/test/snake.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/snake.mash -------------------------------------------------------------------------------- /bin/win64/test/snake/game_io.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/snake/game_io.mash -------------------------------------------------------------------------------- /bin/win64/test/snake/snake.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/snake/snake.mash -------------------------------------------------------------------------------- /bin/win64/test/test.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/test.mash -------------------------------------------------------------------------------- /bin/win64/test/test_mcl.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/test_mcl.mash -------------------------------------------------------------------------------- /bin/win64/test/try.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/try.mash -------------------------------------------------------------------------------- /bin/win64/test/webapp/body.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/body.htm -------------------------------------------------------------------------------- /bin/win64/test/webapp/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/index.htm -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/favicon.png -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/images/background.jpg -------------------------------------------------------------------------------- /bin/win64/test/webapp/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/static/images/logo.png -------------------------------------------------------------------------------- /bin/win64/test/webapp/webapp.mash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/bin/win64/test/webapp/webapp.mash -------------------------------------------------------------------------------- /ide/aboutform.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/aboutform.lfm -------------------------------------------------------------------------------- /ide/aboutform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/aboutform.pas -------------------------------------------------------------------------------- /ide/adp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/adp.inc -------------------------------------------------------------------------------- /ide/dbgframe.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/dbgframe.lfm -------------------------------------------------------------------------------- /ide/dbgframe.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/dbgframe.pas -------------------------------------------------------------------------------- /ide/debugger.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/debugger.pas -------------------------------------------------------------------------------- /ide/editor.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/editor.lfm -------------------------------------------------------------------------------- /ide/editor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/editor.pas -------------------------------------------------------------------------------- /ide/global.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/global.pas -------------------------------------------------------------------------------- /ide/mainform.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/mainform.lfm -------------------------------------------------------------------------------- /ide/mainform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/mainform.pas -------------------------------------------------------------------------------- /ide/mash_ide.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/mash_ide.ico -------------------------------------------------------------------------------- /ide/mash_ide.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/mash_ide.lpi -------------------------------------------------------------------------------- /ide/mash_ide.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/mash_ide.lpr -------------------------------------------------------------------------------- /ide/mash_ide.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/mash_ide.lps -------------------------------------------------------------------------------- /ide/mash_ide.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/mash_ide.res -------------------------------------------------------------------------------- /ide/svm_grabber.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/svm_grabber.pas -------------------------------------------------------------------------------- /ide/svm_mem.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/ide/svm_mem.pas -------------------------------------------------------------------------------- /lang/asm/svm/svmasm.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/svmasm.lpi -------------------------------------------------------------------------------- /lang/asm/svm/svmasm.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/svmasm.lpr -------------------------------------------------------------------------------- /lang/asm/svm/test/test1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/test/test1.asm -------------------------------------------------------------------------------- /lang/asm/svm/test/test1.vmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/test/test1.vmc -------------------------------------------------------------------------------- /lang/asm/svm/test/test2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/test/test2.asm -------------------------------------------------------------------------------- /lang/asm/svm/test/test2.vmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/test/test2.vmc -------------------------------------------------------------------------------- /lang/asm/svm/test/test3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/test/test3.asm -------------------------------------------------------------------------------- /lang/asm/svm/test/test3.vmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/test/test3.vmc -------------------------------------------------------------------------------- /lang/asm/svm/u_asm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/u_asm.pas -------------------------------------------------------------------------------- /lang/asm/svm/u_common.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/u_common.pas -------------------------------------------------------------------------------- /lang/asm/svm/u_consts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/u_consts.pas -------------------------------------------------------------------------------- /lang/asm/svm/u_imports.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/u_imports.pas -------------------------------------------------------------------------------- /lang/asm/svm/u_writers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/asm/svm/u_writers.pas -------------------------------------------------------------------------------- /lang/fpmashc.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/fpmashc.lpi -------------------------------------------------------------------------------- /lang/fpmashc.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/fpmashc.lpr -------------------------------------------------------------------------------- /lang/u_ast.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_ast.pas -------------------------------------------------------------------------------- /lang/u_ast_blocks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_ast_blocks.pas -------------------------------------------------------------------------------- /lang/u_ast_constructions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_ast_constructions.pas -------------------------------------------------------------------------------- /lang/u_ast_constructions_blocks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_ast_constructions_blocks.pas -------------------------------------------------------------------------------- /lang/u_ast_expression.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_ast_expression.pas -------------------------------------------------------------------------------- /lang/u_ast_expression_blocks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_ast_expression_blocks.pas -------------------------------------------------------------------------------- /lang/u_compiler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_compiler.pas -------------------------------------------------------------------------------- /lang/u_gen.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_gen.pas -------------------------------------------------------------------------------- /lang/u_gen_svm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_gen_svm.pas -------------------------------------------------------------------------------- /lang/u_parser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_parser.pas -------------------------------------------------------------------------------- /lang/u_sem.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_sem.pas -------------------------------------------------------------------------------- /lang/u_tokens.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/lang/u_tokens.pas -------------------------------------------------------------------------------- /runtime/libs/bf/bf.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/bf/bf.lpi -------------------------------------------------------------------------------- /runtime/libs/bf/bf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/bf/bf.pas -------------------------------------------------------------------------------- /runtime/libs/crt/svmcrt.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/crt/svmcrt.lpi -------------------------------------------------------------------------------- /runtime/libs/crt/svmcrt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/crt/svmcrt.pas -------------------------------------------------------------------------------- /runtime/libs/files/files.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/files/files.lpi -------------------------------------------------------------------------------- /runtime/libs/files/files.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/files/files.pas -------------------------------------------------------------------------------- /runtime/libs/graph/DGraph.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/graph/DGraph.lpi -------------------------------------------------------------------------------- /runtime/libs/graph/DGraph.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/graph/DGraph.pas -------------------------------------------------------------------------------- /runtime/libs/graph/_FP.CMD: -------------------------------------------------------------------------------- 1 | fp -------------------------------------------------------------------------------- /runtime/libs/math/lmath.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/math/lmath.lpi -------------------------------------------------------------------------------- /runtime/libs/math/lmath.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/math/lmath.pas -------------------------------------------------------------------------------- /runtime/libs/mcl/mcl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/mcl/mcl.ico -------------------------------------------------------------------------------- /runtime/libs/mcl/mcl.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/mcl/mcl.lpi -------------------------------------------------------------------------------- /runtime/libs/mcl/mcl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/mcl/mcl.pas -------------------------------------------------------------------------------- /runtime/libs/mcl/mcl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/mcl/mcl.res -------------------------------------------------------------------------------- /runtime/libs/mcl/mclform.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/mcl/mclform.lfm -------------------------------------------------------------------------------- /runtime/libs/mcl/mclform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/mcl/mclform.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/blcksock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/blcksock.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/socks.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/socks.lpi -------------------------------------------------------------------------------- /runtime/libs/sockets/socks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/socks.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synacode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synacode.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synafpc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synafpc.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synaip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synaip.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/asn1util.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/asn1util.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/blcksock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/blcksock.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/clamsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/clamsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/dnssend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/dnssend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/ftpsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/ftpsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/ftptsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/ftptsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/httpsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/httpsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/imapsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/imapsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/laz_synapse.lpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/laz_synapse.lpk -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/laz_synapse.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/laz_synapse.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/ldapsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/ldapsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/mimeinln.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/mimeinln.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/mimemess.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/mimemess.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/mimepart.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/mimepart.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/nntpsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/nntpsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/pingsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/pingsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/pop3send.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/pop3send.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/slogsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/slogsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/smtpsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/smtpsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/snmpsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/snmpsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/sntpsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/sntpsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/ssdotnet.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/ssdotnet.inc -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/ssfpc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/ssfpc.inc -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/ssl_cryptlib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/ssl_cryptlib.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/ssl_openssl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/ssl_openssl.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/ssl_openssl_lib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/ssl_openssl_lib.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/ssl_sbb.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/ssl_sbb.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/ssl_streamsec.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/ssl_streamsec.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/sslinux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/sslinux.inc -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/sswin32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/sswin32.inc -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synachar.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synachar.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synacode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synacode.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synacrypt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synacrypt.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synadbg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synadbg.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synafpc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synafpc.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synaicnv.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synaicnv.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synaip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synaip.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synamisc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synamisc.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synaser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synaser.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synautil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synautil.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/synsock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/synsock.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synapse/tlntsend.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synapse/tlntsend.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synautil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synautil.pas -------------------------------------------------------------------------------- /runtime/libs/sockets/synsock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/sockets/synsock.pas -------------------------------------------------------------------------------- /runtime/libs/streams/streams.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/streams/streams.lpi -------------------------------------------------------------------------------- /runtime/libs/streams/streams.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/streams/streams.pas -------------------------------------------------------------------------------- /runtime/libs/svm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/svm.inc -------------------------------------------------------------------------------- /runtime/libs/svm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/svm.pas -------------------------------------------------------------------------------- /runtime/libs/thrlib/thrlib.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/thrlib/thrlib.lpi -------------------------------------------------------------------------------- /runtime/libs/thrlib/thrlib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/libs/thrlib/thrlib.pas -------------------------------------------------------------------------------- /runtime/svm/core_api.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/core_api.inc -------------------------------------------------------------------------------- /runtime/svm/libs_api.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/libs_api.inc -------------------------------------------------------------------------------- /runtime/svm/svm.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm.lpi -------------------------------------------------------------------------------- /runtime/svm/svm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm.pas -------------------------------------------------------------------------------- /runtime/svm/svm_callbacks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_callbacks.pas -------------------------------------------------------------------------------- /runtime/svm/svm_common.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_common.pas -------------------------------------------------------------------------------- /runtime/svm/svm_core.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_core.pas -------------------------------------------------------------------------------- /runtime/svm/svm_exceptions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_exceptions.pas -------------------------------------------------------------------------------- /runtime/svm/svm_grabber.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_grabber.pas -------------------------------------------------------------------------------- /runtime/svm/svm_imports.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_imports.pas -------------------------------------------------------------------------------- /runtime/svm/svm_libs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_libs.pas -------------------------------------------------------------------------------- /runtime/svm/svm_mem.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_mem.pas -------------------------------------------------------------------------------- /runtime/svm/svm_opcodes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_opcodes.pas -------------------------------------------------------------------------------- /runtime/svm/svm_res.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_res.pas -------------------------------------------------------------------------------- /runtime/svm/svm_stack.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_stack.pas -------------------------------------------------------------------------------- /runtime/svm/svm_threads.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_threads.pas -------------------------------------------------------------------------------- /runtime/svm/svm_utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoPi0n/mash-lang/HEAD/runtime/svm/svm_utils.pas --------------------------------------------------------------------------------