├── .github └── workflows │ └── ccpp.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── COPYING ├── Makefile ├── README.md ├── configure ├── demo ├── 1-hello.xl ├── 10-pass-variable-around.xl ├── 2-many-writes.xl ├── 3-loops-on-target.xl ├── 4-get-temperature.xl ├── 5-temp-variation.xl ├── 6-temp-average.xl ├── 7-two-hops.xl ├── 8-report-temperature-changes.xl └── 9-min-max-average.xl ├── docs ├── HANDBOOK.adoc ├── HANDBOOK.html ├── HANDBOOK.pdf ├── Makefile ├── XL_Reference_Manual.pdf ├── XL_Reference_Manual.tm ├── _config.yml ├── highlight │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── README.ru.md │ ├── highlight.min.js │ └── styles │ │ ├── a11y-dark.css │ │ ├── a11y-light.css │ │ ├── agate.css │ │ ├── an-old-hope.css │ │ ├── androidstudio.css │ │ ├── arduino-light.css │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── atelier-cave-dark.css │ │ ├── atelier-cave-light.css │ │ ├── atelier-dune-dark.css │ │ ├── atelier-dune-light.css │ │ ├── atelier-estuary-dark.css │ │ ├── atelier-estuary-light.css │ │ ├── atelier-forest-dark.css │ │ ├── atelier-forest-light.css │ │ ├── atelier-heath-dark.css │ │ ├── atelier-heath-light.css │ │ ├── atelier-lakeside-dark.css │ │ ├── atelier-lakeside-light.css │ │ ├── atelier-plateau-dark.css │ │ ├── atelier-plateau-light.css │ │ ├── atelier-savanna-dark.css │ │ ├── atelier-savanna-light.css │ │ ├── atelier-seaside-dark.css │ │ ├── atelier-seaside-light.css │ │ ├── atelier-sulphurpool-dark.css │ │ ├── atelier-sulphurpool-light.css │ │ ├── atom-one-dark-reasonable.css │ │ ├── atom-one-dark.css │ │ ├── atom-one-light.css │ │ ├── brown-paper.css │ │ ├── brown-papersq.png │ │ ├── codepen-embed.css │ │ ├── color-brewer.css │ │ ├── darcula.css │ │ ├── dark.css │ │ ├── darkula.css │ │ ├── default.css │ │ ├── docco.css │ │ ├── dracula.css │ │ ├── far.css │ │ ├── foundation.css │ │ ├── github-gist.css │ │ ├── github.css │ │ ├── github.min.css │ │ ├── gml.css │ │ ├── googlecode.css │ │ ├── gradient-dark.css │ │ ├── grayscale.css │ │ ├── gruvbox-dark.css │ │ ├── gruvbox-light.css │ │ ├── hopscotch.css │ │ ├── hybrid.css │ │ ├── idea.css │ │ ├── ir-black.css │ │ ├── isbl-editor-dark.css │ │ ├── isbl-editor-light.css │ │ ├── kimbie.dark.css │ │ ├── kimbie.light.css │ │ ├── lightfair.css │ │ ├── magula.css │ │ ├── mono-blue.css │ │ ├── monokai-sublime.css │ │ ├── monokai.css │ │ ├── night-owl.css │ │ ├── nord.css │ │ ├── obsidian.css │ │ ├── ocean.css │ │ ├── paraiso-dark.css │ │ ├── paraiso-light.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── purebasic.css │ │ ├── qtcreator_dark.css │ │ ├── qtcreator_light.css │ │ ├── railscasts.css │ │ ├── rainbow.css │ │ ├── routeros.css │ │ ├── school-book.css │ │ ├── school-book.png │ │ ├── shades-of-purple.css │ │ ├── solarized-dark.css │ │ ├── solarized-light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── vs2015.css │ │ ├── xcode.css │ │ ├── xt256.css │ │ └── zenburn.css ├── images │ ├── Tao3D-clock.png │ ├── tao3d-slide.jpg │ └── tao3dtheme1.png └── index.html ├── include ├── action.h ├── atomic.h ├── base.h ├── basics.h ├── basics.tbl ├── bytecode.h ├── context.h ├── errors.h ├── evaluator.h ├── gc.h ├── info.h ├── interpreter.h ├── io.tbl ├── main.h ├── math.tbl ├── native.h ├── opcodes.h ├── options.h ├── ownership.h ├── parser.h ├── postorder.h ├── refcount.h ├── remote.h ├── remote.tbl ├── renderer.h ├── runtime.h ├── save.h ├── scanner.h ├── serializer.h ├── syntax.h ├── temperature.tbl ├── text.tbl ├── time_functions.h ├── time_functions.tbl ├── tree-clone.h ├── tree-walk.h ├── tree.h ├── utf8.h ├── utf8_fileutils.h ├── valgrind │ ├── memcheck.h │ └── valgrind.h ├── version.h └── winglob.h ├── lldb └── xlcmds.py ├── native ├── docs │ └── STYLE.md └── lib │ ├── xl.algorithms.xs │ ├── xl.compiler.symbol.xs │ ├── xl.compiler.xs │ ├── xl.data.alias.xl │ ├── xl.data.alias.xs │ ├── xl.data.collections.array.xl │ ├── xl.data.collections.array.xs │ ├── xl.data.collections.list.xs │ ├── xl.data.collections.slice.xs │ ├── xl.data.collections.string.xs │ ├── xl.data.enumeration.xl │ ├── xl.data.enumeration.xs │ ├── xl.data.iterator.xs │ ├── xl.data.sequence.xs │ ├── xl.data.stream.xs │ ├── xl.data.xs │ ├── xl.math.complex.xl │ ├── xl.math.complex.xs │ ├── xl.math.functions.xs │ ├── xl.math.xl │ ├── xl.math.xs │ ├── xl.operations.arithmetic.xl │ ├── xl.operations.arithmetic.xs │ ├── xl.operations.bitshift.xs │ ├── xl.operations.bitwise.xs │ ├── xl.operations.clone.xs │ ├── xl.operations.comparison.xs │ ├── xl.operations.copy.xs │ ├── xl.operations.delete.xs │ ├── xl.operations.move.xs │ ├── xl.operations.xs │ ├── xl.program.contract.xl │ ├── xl.program.contract.xs │ ├── xl.program.error.xl │ ├── xl.program.error.xs │ ├── xl.program.module.xs │ ├── xl.program.xs │ ├── xl.system.configuration.xl │ ├── xl.system.configuration.xs │ ├── xl.system.memory.xl │ ├── xl.system.memory.xs │ ├── xl.system.types.xs │ ├── xl.system.version.xs │ ├── xl.system.xl │ ├── xl.system.xs │ ├── xl.types.boolean.xl │ ├── xl.types.boolean.xs │ ├── xl.types.character.xs │ ├── xl.types.combinations.xl │ ├── xl.types.combinations.xs │ ├── xl.types.conversions.xs │ ├── xl.types.decimal.xs │ ├── xl.types.enumerated.xs │ ├── xl.types.generics.xl │ ├── xl.types.generics.xs │ ├── xl.types.integer.xl │ ├── xl.types.integer.xs │ ├── xl.types.lifetime.xs │ ├── xl.types.number.xl │ ├── xl.types.number.xs │ ├── xl.types.pattern.xs │ ├── xl.types.range.xs │ ├── xl.types.real.xl │ ├── xl.types.real.xs │ ├── xl.types.text.xl │ ├── xl.types.text.xs │ ├── xl.types.type.xl │ ├── xl.types.type.xs │ ├── xl.types.unsafe.pointer.xl │ ├── xl.types.unsafe.pointer.xs │ ├── xl.types.xs │ └── xl.xs ├── src ├── C.syntax ├── Makefile ├── action.cpp ├── alltests ├── builtins.xl ├── bytecode.cpp ├── bytecode.stylesheet ├── cdecls.cpp ├── cdecls.h ├── comments.stylesheet ├── compiler-expr.cpp ├── compiler-expr.h ├── compiler-fast.cpp ├── compiler-fast.h ├── compiler-function.cpp ├── compiler-function.h ├── compiler-primitives.tbl ├── compiler-prototype.cpp ├── compiler-prototype.h ├── compiler-rewrites.cpp ├── compiler-rewrites.h ├── compiler-types.cpp ├── compiler-types.h ├── compiler-unit.cpp ├── compiler-unit.h ├── compiler.cpp ├── compiler.h ├── context.cpp ├── dbghtml.stylesheet ├── debug.stylesheet ├── errors.cpp ├── fdstream.hpp ├── gc.cpp ├── generate-module-body ├── generate-module-header ├── html.stylesheet ├── interpreter.cpp ├── interpreter.tbl ├── llvm-crap.cpp ├── llvm-crap.h ├── llvm-crap.tbl ├── main.cpp ├── native.cpp ├── opcodes.cpp ├── options.cpp ├── parser.cpp ├── remote.cpp ├── renderer.cpp ├── rewrites.cpp ├── rewrites.h ├── runtime.cpp ├── scanner.cpp ├── serializer.cpp ├── short.stylesheet ├── syntax.cpp ├── tao.stylesheet ├── test_gc.cpp ├── tree.cpp ├── types.cpp ├── types.h ├── utf8_fileutils.cpp ├── version.cpp ├── winglob.cpp ├── xl.cpp ├── xl.stylesheet └── xl.syntax ├── tests ├── 00.Parser │ ├── C-syntax.ref │ ├── C-syntax.xl │ ├── base64.ref │ ├── base64.xl │ ├── binary-data-errors.ref │ ├── binary-data-errors.xl │ ├── binary-data.ref │ ├── binary-data.xl │ ├── bug346-O1.ref │ ├── bug346.ref │ ├── bug346.xl │ ├── comment-closing-backtrack.ref │ ├── comment-closing-backtrack.xl │ ├── fault-injection-1-early.ref │ ├── fault-injection-1-early.xl │ ├── fault-injection-2-post-LLVM.ref │ ├── fault-injection-2-post-LLVM.xl │ ├── fault-injection-stack.ref │ ├── fault-injection-stack.xl │ ├── file-not-found.ref │ ├── file-not-found.xl │ ├── invalid-character.ref │ ├── invalid-character.xl │ ├── option-bool-variants.ref │ ├── option-bool-variants.xl │ ├── option-extra-arg.ref │ ├── option-extra-arg.xl │ ├── option-invalid-bool.ref │ ├── option-invalid-bool.xl │ ├── option-invalid-integer.ref │ ├── option-invalid-integer.xl │ ├── option-nonexistent.ref │ ├── option-nonexistent.xl │ ├── option-range-error-high.ref │ ├── option-range-error-high.xl │ ├── option-range-error-low.ref │ ├── option-range-error-low.xl │ ├── preserve_comments.ref │ ├── preserve_comments.xl │ ├── reject_symbols_in_pattern.ref │ ├── reject_symbols_in_pattern.xl │ ├── trailing_opcode.ref │ └── trailing_opcode.xl ├── 01.Evaluation │ ├── 01-simple-writeln.ref │ ├── 01-simple-writeln.xl │ ├── 02-complex-writeln.ref │ ├── 02-complex-writeln.xl │ ├── 03-primitives-O1.ref │ ├── 03-primitives.ref │ ├── 03-primitives.xl │ ├── 04-write-types.ref │ ├── 04-write-types.xl │ ├── 05-kind.ref │ ├── 05-kind.xl │ ├── 06-Fibonacci.ref │ ├── 06-Fibonacci.xl │ ├── 07-simple-anonymous-function.ref │ ├── 07-simple-anonymous-function.xl │ ├── 08-named-anonymous-function.ref │ ├── 08-named-anonymous-function.xl │ ├── 09-named-array.ref │ ├── 09-named-array.xl │ ├── 10-anonymous-array.ref │ ├── 10-anonymous-array.xl │ ├── 11-parse-tree-and-parse-text.ref │ ├── 11-parse-tree-and-parse-text.xl │ ├── 12-local-function.ref │ ├── 12-local-function.xl │ ├── 13-type-match.ref │ ├── 13-type-match.xl │ ├── 14-type-mismatch.ref │ ├── 14-type-mismatch.xl │ ├── 15-type-dispatch.ref │ ├── 15-type-dispatch.xl │ ├── 16-indirect-type-dispatch.ref │ ├── 16-indirect-type-dispatch.xl │ ├── 17-returning-inner-functions.ref │ ├── 17-returning-inner-functions.xl │ ├── 18-when-conditions-collatz-syracuse.ref │ ├── 18-when-conditions-collatz-syracuse.xl │ ├── 19-invalid-when-clause.ref │ ├── 19-invalid-when-clause.xl │ ├── 20-invalid-when-clause-type.ref │ ├── 20-invalid-when-clause-type.xl │ ├── 21-invalid-type-declaration-O0.ref │ ├── 21-invalid-type-declaration.ref │ ├── 21-invalid-type-declaration.xl │ ├── 22-exceeding-stack-depth.ref │ ├── 22-exceeding-stack-depth.xl │ ├── 23-two-argument-anonymous-function.ref │ ├── 23-two-argument-anonymous-function.xl │ ├── 24-array-and-scope-indexing.ref │ ├── 24-array-and-scope-indexing.xl │ ├── 2422-2427-boolean-in-writeln.ref │ ├── 2422-2427-boolean-in-writeln.xl │ ├── 2422-assign-to-true.ref │ ├── 2422-assign-to-true.xl │ ├── bug2279.ref │ ├── bug2279.xl │ ├── bug3327.ref │ ├── bug3327.xl │ ├── factorial.ref │ ├── factorial.xl │ ├── version.ref │ └── version.xl ├── 02.Arithmetic │ ├── 01-arith-add-fp.ref │ ├── 01-arith-add-fp.xl │ ├── 01-arith-add-with-const.ref │ ├── 01-arith-add-with-const.xl │ ├── 01-arith-add.ref │ ├── 01-arith-add.xl │ ├── 01.arith-add-fp-with-const.ref │ ├── 01.arith-add-fp-with-const.xl │ ├── 02-basic-operators.ref │ ├── 02-basic-operators.xl │ ├── 03-basic-fp.ref │ ├── 03-basic-fp.xl │ ├── 04-basic-operators-in-function.ref │ ├── 04-basic-operators-in-function.xl │ ├── 05-basic-fp-operators-in-function.ref │ ├── 05-basic-fp-operators-in-function.xl │ ├── 06-basic-comparisons.ref │ ├── 06-basic-comparisons.xl │ ├── 07-math-functions.ref │ ├── 07-math-functions.xl │ ├── 08-complex-add.ref │ ├── 08-complex-add.xl │ ├── 08b-complex-add-with-prefix.ref │ ├── 08b-complex-add-with-prefix.xl │ ├── 08c-complex-add-with-unnamed-prefix.xl │ ├── 09-complex-arithmetic.ref │ └── 09-complex-arithmetic.xl ├── 03.Control │ ├── 01-good-and-bad.ref │ ├── 01-good-and-bad.xl │ ├── 01-good.ref │ ├── 01-good.xl │ ├── 02-good-is-bad.ref │ ├── 02-good-is-bad.xl │ ├── 03-basic-if-then-else.ref │ ├── 03-basic-if-then-else.xl │ ├── 04-if-then-else-with-function.ref │ ├── 04-if-then-else-with-function.xl │ ├── 05-program-exit.ref │ ├── 05-program-exit.xl │ ├── 06-while-loop.ref │ ├── 06-while-loop.xl │ ├── 07-until-loop.ref │ ├── 07-until-loop.xl │ ├── 08-infinite-loop.ref │ └── 08-infinite-loop.xl ├── 04.Text │ ├── 01-length.ref │ ├── 01-length.xl │ ├── 02-concat.ref │ ├── 02-concat.xl │ ├── 03-contains.ref │ ├── 03-contains.xl │ ├── 04-replace.ref │ └── 04-replace.xl ├── 05.Externals │ ├── extern-writeln-hello-world-integer-puts.ref │ ├── extern-writeln-hello-world.ref │ └── unknown-external.ref ├── 10.Serialization │ └── serialize.xl.ser ├── 11.CommandLine │ ├── ambiguous-option.ref │ └── ambiguous-option.xl ├── 12.Manual │ ├── fig1-adding-if-then-else.ref │ ├── fig1-adding-if-then-else.xl │ ├── fig2a-BankAccount.ref │ ├── fig2a-BankAccount.xl │ ├── fig2b-BankAccount.ref │ └── fig2b-BankAccount.xl ├── O3 │ ├── add.ref │ ├── add.xl │ ├── builtin-add.ref │ ├── builtin-add.xl │ ├── builtin-and.ref │ ├── builtin-and.xl │ ├── builtin-ashr.ref │ ├── builtin-ashr.xl │ ├── builtin-beq.ref │ ├── builtin-beq.xl │ ├── builtin-bge.ref │ ├── builtin-bge.xl │ ├── builtin-bgt.ref │ ├── builtin-bgt.xl │ ├── builtin-ble.ref │ ├── builtin-ble.xl │ ├── builtin-blt.ref │ ├── builtin-blt.xl │ ├── builtin-bne.ref │ ├── builtin-bne.xl │ ├── builtin-div.ref │ ├── builtin-div.xl │ ├── builtin-fabs.ref │ ├── builtin-fabs.xl │ ├── builtin-fadd.ref │ ├── builtin-fadd.xl │ ├── builtin-fdiv.ref │ ├── builtin-fdiv.xl │ ├── builtin-feq.ref │ ├── builtin-feq.xl │ ├── builtin-fge.ref │ ├── builtin-fge.xl │ ├── builtin-fgt.ref │ ├── builtin-fgt.xl │ ├── builtin-fle.ref │ ├── builtin-fle.xl │ ├── builtin-flt.ref │ ├── builtin-flt.xl │ ├── builtin-fmod.ref │ ├── builtin-fmod.xl │ ├── builtin-fmul.ref │ ├── builtin-fmul.xl │ ├── builtin-fne.ref │ ├── builtin-fne.xl │ ├── builtin-fneg.ref │ ├── builtin-fneg.xl │ ├── builtin-frem.ref │ ├── builtin-frem.xl │ ├── builtin-fsub.ref │ ├── builtin-fsub.xl │ ├── builtin-iabs.ref │ ├── builtin-iabs.xl │ ├── builtin-ieq.ref │ ├── builtin-ieq.xl │ ├── builtin-ige.ref │ ├── builtin-ige.xl │ ├── builtin-igt.ref │ ├── builtin-igt.xl │ ├── builtin-ile.ref │ ├── builtin-ile.xl │ ├── builtin-ilt.ref │ ├── builtin-ilt.xl │ ├── builtin-ine.ref │ ├── builtin-ine.xl │ ├── builtin-kind-block.ref │ ├── builtin-kind-block.xl │ ├── builtin-kind-infix.ref │ ├── builtin-kind-infix.xl │ ├── builtin-kind-integer.ref │ ├── builtin-kind-integer.xl │ ├── builtin-kind-postfix.ref │ ├── builtin-kind-postfix.xl │ ├── builtin-kind-prefix.ref │ ├── builtin-kind-prefix.xl │ ├── builtin-kind-real.ref │ ├── builtin-kind-real.xl │ ├── builtin-kind-text.ref │ ├── builtin-kind-text.xl │ ├── builtin-left.ref │ ├── builtin-left.xl │ ├── builtin-lshr.ref │ ├── builtin-lshr.xl │ ├── builtin-mod.ref │ ├── builtin-mod.xl │ ├── builtin-mul.ref │ ├── builtin-mul.xl │ ├── builtin-name.ref │ ├── builtin-name.xl │ ├── builtin-neg.ref │ ├── builtin-neg.xl │ ├── builtin-or.ref │ ├── builtin-or.xl │ ├── builtin-paren-noeval.ref │ ├── builtin-paren-noeval.xl │ ├── builtin-rem.ref │ ├── builtin-rem.xl │ ├── builtin-right.ref │ ├── builtin-right.xl │ ├── builtin-shl.ref │ ├── builtin-shl.xl │ ├── builtin-sub.ref │ ├── builtin-sub.xl │ ├── builtin-teq.ref │ ├── builtin-teq.xl │ ├── builtin-tge.ref │ ├── builtin-tge.xl │ ├── builtin-tgt.ref │ ├── builtin-tgt.xl │ ├── builtin-tle.ref │ ├── builtin-tle.xl │ ├── builtin-tlt.ref │ ├── builtin-tlt.xl │ ├── builtin-tne.ref │ ├── builtin-tne.xl │ ├── builtin-xor.ref │ ├── builtin-xor.xl │ ├── extern-acos.ref │ ├── extern-acos.xl │ ├── extern-asin.ref │ ├── extern-asin.xl │ ├── extern-atan.ref │ ├── extern-atan.xl │ ├── extern-cos.ref │ ├── extern-cos.xl │ ├── extern-exp.ref │ ├── extern-exp.xl │ ├── extern-expm1.ref │ ├── extern-expm1.xl │ ├── extern-log.ref │ ├── extern-log.xl │ ├── extern-log10.ref │ ├── extern-log10.xl │ ├── extern-log1p.ref │ ├── extern-log1p.xl │ ├── extern-log2.ref │ ├── extern-log2.xl │ ├── extern-pi.ref │ ├── extern-pi.xl │ ├── extern-sin.ref │ ├── extern-sin.xl │ ├── extern-sqrt.ref │ ├── extern-sqrt.xl │ ├── extern-tan.ref │ ├── extern-tan.xl │ ├── extern-writeln-hello-world-O3.ref │ ├── extern-writeln-hello-world-integer-puts-O3.ref │ ├── extern-writeln-hello-world-integer-puts.xl │ ├── extern-writeln-hello-world.xl │ ├── factorial-O3.ref │ ├── factorial.xl │ ├── fibonacci-O3.ref │ ├── fibonacci-type-conflict-O3.ref │ ├── fibonacci-type-conflict.xl │ ├── fibonacci.xl │ ├── float-expression.ref │ ├── float-expression.xl │ ├── library-writeln-list.xl │ ├── library-writeln.ref │ ├── library-writeln.xl │ ├── return-self-tree.ref │ ├── return-self-tree.xl │ ├── self-comma-list.ref │ ├── self-comma-list.xl │ ├── simple-character.ref │ ├── simple-character.xl │ ├── simple-integer.ref │ ├── simple-integer.xl │ ├── simple-real.ref │ ├── simple-real.xl │ ├── simple-text.ref │ ├── simple-text.xl │ ├── unknown-external-O3.ref │ └── unknown-external.xl ├── alltests ├── alltests.awk ├── alltests_C ├── alltests_Java ├── alltests_O0 ├── alltests_O1 ├── alltests_O2 ├── alltests_O3 ├── alltests_default ├── baseline-O0.txt ├── baseline-O1.txt ├── baseline-O2.txt ├── baseline-O3.txt ├── baseline-default.txt └── baseline.txt ├── xl.spec └── xl2 ├── .gdb_history ├── COPYING ├── Compile_msvc_CmdLine.bat ├── Makefile ├── Makefile.rules ├── README ├── README.Win32 ├── samples ├── HelloWorld │ ├── CompileAndRun.bat │ └── HelloWorld.xl └── TestIncludePlugin │ ├── CompileAndRun.bat │ ├── ForInclude.inc │ └── TestIncludePlugin.xl ├── stage.mk ├── stage0 ├── Makefile ├── base.h ├── configuration.h ├── context.cpp ├── context.h ├── ctrans.cpp ├── ctrans.h ├── ctrans.tbl ├── errors.cpp ├── errors.h ├── errors.tbl ├── errors.txt ├── main.cpp ├── options.cpp ├── options.h ├── options.tbl ├── parser.cpp ├── parser.h ├── scanner.cpp ├── scanner.h ├── tree.cpp ├── tree.h ├── xl.syntax └── xl_lib.h ├── stage1 ├── .cvsignore ├── Makefile ├── compiler.xl ├── make.msvc71.bat ├── xl.errors.xl ├── xl.errors.xs ├── xl.parser.tree.xl ├── xl.parser.tree.xs ├── xl.parser.xl ├── xl.parser.xs ├── xl.scanner.xl ├── xl.scanner.xs ├── xl.textio.encoding.ascii.xs ├── xl.textio.xl ├── xl.translator.xl ├── xl.translator.xs └── xl.ui.console.xs ├── stage2 ├── Makefile ├── TESTS │ ├── 01.Parser │ │ ├── incomplete_function.ref │ │ ├── incomplete_function.xl │ │ ├── indentation_and_comments.ref │ │ ├── indentation_and_comments.xl │ │ ├── indentation_in_parentheses.ref │ │ ├── indentation_in_parentheses.xl │ │ ├── infix.ref │ │ ├── infix.xl │ │ ├── integer_errors.ref │ │ ├── integer_errors.xl │ │ ├── integers.ref │ │ ├── integers.xl │ │ ├── loop_instruction.ref │ │ ├── loop_instruction.xl │ │ ├── prefix.ref │ │ ├── prefix.xl │ │ ├── real_errors.ref │ │ ├── real_errors.xl │ │ ├── reals.ref │ │ ├── reals.xl │ │ ├── statement_vs_expression.ref │ │ ├── statement_vs_expression.xl │ │ ├── text.ref │ │ └── text.xl │ ├── 02.Renderer │ │ ├── dbghtml_style.ref │ │ ├── dbghtml_style.xl │ │ ├── debug_style.ref │ │ ├── debug_style.xl │ │ ├── default_style.ref │ │ ├── default_style.xl │ │ ├── html_style.ref │ │ └── html_style.xl │ ├── 03.Declarations │ │ ├── automatic_type_deduction.ref │ │ ├── automatic_type_deduction.xl │ │ ├── basic_declarations.ref │ │ ├── basic_declarations.xl │ │ ├── basic_redefinitions.ref │ │ ├── basic_redefinitions.xl │ │ ├── direct_constructor_invokation.ref │ │ ├── direct_constructor_invokation.xl │ │ ├── direct_constructor_invokation_fail.ref │ │ ├── direct_constructor_invokation_fail.xl │ │ ├── local_name_hiding.ref │ │ ├── local_name_hiding.xl │ │ ├── no_redeclaration_for_instantiation.ref │ │ └── no_redeclaration_for_instantiation.xl │ ├── 04.Lookup │ │ ├── forward_declaration.ref │ │ ├── forward_declaration.xl │ │ ├── type_not_found.ref │ │ ├── type_not_found.xl │ │ ├── type_redefined.ref │ │ ├── type_redefined.xl │ │ ├── type_redefined_once.ref │ │ └── type_redefined_once.xl │ ├── 05.Expressions │ │ ├── ambiguous-reduction.ref │ │ ├── ambiguous-reduction.xl │ │ ├── factorial.ref │ │ ├── factorial.xl │ │ ├── implicit_conversions.ref │ │ ├── implicit_conversions.xl │ │ ├── multi-reduction.ref │ │ ├── multi-reduction.xl │ │ ├── write-to-function.ref │ │ ├── write-to-function.xl │ │ ├── write-to-generic-function.ref │ │ ├── write-to-generic-function.xl │ │ ├── write-to-lit.ref │ │ └── write-to-lit.xl │ ├── 06.Functions │ │ ├── arithmetic-operator-ambiguity.ref │ │ ├── arithmetic-operator-ambiguity.xl │ │ ├── auto_declaration_of_out_parms.ref │ │ ├── auto_declaration_of_out_parms.xl │ │ ├── auto_declaration_of_out_parms_generic.ref │ │ ├── auto_declaration_of_out_parms_generic.xl │ │ ├── expanded-pointer.ref │ │ ├── expanded-pointer.xl │ │ ├── global_code.ref │ │ ├── global_code.xl │ │ ├── implicit_constructors.ref │ │ ├── implicit_constructors.xl │ │ ├── invalid_function_parm.ref │ │ ├── invalid_function_parm.xl │ │ ├── invalid_parameter_forms.ref │ │ ├── invalid_parameter_forms.xl │ │ ├── nested_function.ref │ │ ├── nested_function.xl │ │ ├── once.ref │ │ ├── once.xl │ │ ├── overload_resolution.ref │ │ ├── overload_resolution.xl │ │ ├── parameter_scopes.ref │ │ ├── parameter_scopes.xl │ │ ├── pointer.ref │ │ ├── pointer.xl │ │ ├── preconditions_and_postconditions.ref │ │ └── preconditions_and_postconditions.xl │ ├── 07.Plugins │ │ ├── differentiation.ref │ │ ├── differentiation.xl │ │ ├── differentiation_cmd_line.ref │ │ ├── differentiation_cmd_line.xl │ │ ├── differentiation_code.ref │ │ ├── differentiation_code.xl │ │ ├── listing.ref │ │ ├── listing.xl │ │ ├── nonexistent_pragma.ref │ │ ├── nonexistent_pragma.xl │ │ ├── tentative_pragma.ref │ │ └── tentative_pragma.xl │ ├── 08.Aggregates │ │ ├── address-of-operator.ref │ │ ├── address-of-operator.xl │ │ ├── array_ctors_and_dtors.ref │ │ ├── array_ctors_and_dtors.xl │ │ ├── auto-deref-of-pointer.ref │ │ ├── auto-deref-of-pointer.xl │ │ ├── basic-array.ref │ │ ├── basic-array.xl │ │ ├── basic_records.ref │ │ ├── basic_records.xl │ │ ├── bogus-pointer.ref │ │ ├── bogus-pointer.xl │ │ ├── boolean-type.ref │ │ ├── boolean-type.xl │ │ ├── case_statement.ref │ │ ├── case_statement.xl │ │ ├── constructors.ref │ │ ├── constructors.xl │ │ ├── default_constructors_for_elements_non_generic.ref │ │ ├── default_constructors_for_elements_non_generic.xl │ │ ├── destructor_return.ref │ │ ├── destructor_return.xl │ │ ├── destructors.ref │ │ ├── destructors.xl │ │ ├── destructors_and_constructors_scope.ref │ │ ├── destructors_and_constructors_scope.xl │ │ ├── enumerations.ref │ │ ├── enumerations.xl │ │ ├── fixed-address-pointers.ref │ │ ├── fixed-address-pointers.xl │ │ ├── for_loop_vs_function.ref │ │ ├── for_loop_vs_function.xl │ │ ├── for_loops.ref │ │ ├── for_loops.xl │ │ ├── generated_constructor_and_copy.ref │ │ ├── generated_constructor_and_copy.xl │ │ ├── generic_bytecode_type.ref │ │ ├── generic_bytecode_type.xl │ │ ├── init_term.ref │ │ ├── init_term.xl │ │ ├── loop_exit.ref │ │ ├── loop_exit.xl │ │ ├── loop_exit_without_loop.ref │ │ ├── loop_exit_without_loop.xl │ │ ├── loop_restart.ref │ │ ├── loop_restart.xl │ │ ├── loops.ref │ │ ├── loops.xl │ │ ├── module_definition.ref │ │ ├── module_definition.xl │ │ ├── non_record.ref │ │ ├── non_record.xl │ │ ├── pointer-to-complex.ref │ │ ├── pointer-to-complex.xl │ │ ├── pointer.ref │ │ ├── pointer.xl │ │ ├── static_if.ref │ │ ├── static_if.xl │ │ ├── sub-fields.ref │ │ ├── sub-fields.xl │ │ ├── two-level-dereferences.ref │ │ ├── two-level-dereferences.xl │ │ ├── using.ref │ │ ├── using.xl │ │ ├── variable_case_statement.ref │ │ └── variable_case_statement.xl │ ├── 09.Modules │ │ ├── bad_module.ref │ │ ├── bad_module.xl │ │ ├── bad_module.xs │ │ ├── import_bad_module.ref │ │ ├── import_bad_module.xl │ │ ├── import_simple_module.ref │ │ ├── import_simple_module.xl │ │ ├── import_simple_module_bad.ref │ │ ├── import_simple_module_bad.xl │ │ ├── import_simple_module_using.ref │ │ ├── import_simple_module_using.xl │ │ ├── nested_import.ref │ │ ├── nested_import.xl │ │ ├── nested_import_nonmodule.ref │ │ ├── nested_import_nonmodule.xl │ │ ├── outer_import.ref │ │ ├── outer_import.xl │ │ ├── outer_imported.xs │ │ ├── simple_import.ref │ │ ├── simple_import.xl │ │ ├── simple_import_alias.ref │ │ ├── simple_import_alias.xl │ │ ├── simple_imported.nested1.nested2.ref │ │ ├── simple_imported.nested1.nested2.xl │ │ ├── simple_imported.nested1.ref │ │ ├── simple_imported.nested1.xl │ │ ├── simple_imported.xs │ │ ├── simple_module.nested1.nested2.ref │ │ ├── simple_module.nested1.nested2.xl │ │ ├── simple_module.nested1.ref │ │ ├── simple_module.nested1.xl │ │ ├── simple_module.nested1.xs │ │ ├── simple_module.ref │ │ ├── simple_module.xl │ │ ├── simple_module.xs │ │ ├── simple_module_definition.ref │ │ └── simple_module_definition.xl │ ├── 10.Generics │ │ ├── any_lookup.ref │ │ ├── any_lookup.xl │ │ ├── any_lookup_fail.ref │ │ ├── any_lookup_fail.xl │ │ ├── automatic_generic.ref │ │ ├── automatic_generic.xl │ │ ├── automatic_generic_fail.ref │ │ ├── automatic_generic_fail.xl │ │ ├── automatic_implicit_instantiation.ref │ │ ├── automatic_implicit_instantiation.xl │ │ ├── deduction_by_parameter.ref │ │ ├── deduction_by_parameter.xl │ │ ├── deduction_conflict.ref │ │ ├── deduction_conflict.xl │ │ ├── default_constructors_for_result_in_ctors_generic.ref │ │ ├── default_constructors_for_result_in_ctors_generic.xl │ │ ├── default_generic_arguments.ref │ │ ├── default_generic_arguments.xl │ │ ├── double_pair.ref │ │ ├── double_pair.xl │ │ ├── generic_variadics.ref │ │ ├── generic_variadics.xl │ │ ├── generic_written.ref │ │ ├── generic_written.xl │ │ ├── generic_written_form.ref │ │ ├── generic_written_form.xl │ │ ├── implicit_instantiation.ref │ │ ├── implicit_instantiation.xl │ │ ├── implicit_instantiation_fail.ref │ │ ├── implicit_instantiation_fail.xl │ │ ├── implicit_instantiation_scope.ref │ │ ├── implicit_instantiation_scope.xl │ │ ├── instantiate_module_type.ref │ │ ├── instantiate_module_type.xl │ │ ├── minimax_vararg_generic.ref │ │ ├── minimax_vararg_generic.xl │ │ ├── minimax_vararg_generic_local_operator.ref │ │ ├── minimax_vararg_generic_local_operator.xl │ │ ├── minimax_vararg_generic_mismatch.ref │ │ ├── minimax_vararg_generic_mismatch.xl │ │ ├── multiple_parameters.ref │ │ ├── multiple_parameters.xl │ │ ├── recursive_instantiation.ref │ │ ├── recursive_instantiation.xl │ │ ├── simple_generic_type.ref │ │ ├── simple_generic_type.xl │ │ ├── simple_pair_fail.ref │ │ ├── simple_pair_fail.xl │ │ ├── simple_pair_type.ref │ │ ├── simple_pair_type.xl │ │ ├── simple_variadics.ref │ │ ├── simple_variadics.xl │ │ ├── validated_generic_with_local_type.ref │ │ ├── validated_generic_with_local_type.xl │ │ ├── validation_failure.ref │ │ ├── validation_failure.xl │ │ ├── validation_success.ref │ │ ├── validation_success.xl │ │ ├── value_type_constructor.ref │ │ ├── value_type_constructor.xl │ │ ├── value_type_constructor_crash.ref │ │ └── value_type_constructor_crash.xl │ ├── 11.Preprocessor │ │ ├── assert_macro.ref │ │ ├── assert_macro.xl │ │ ├── assert_macro_compile_time_failure.ref │ │ ├── assert_macro_compile_time_failure.xl │ │ ├── constant_evaluation.ref │ │ ├── constant_evaluation.xl │ │ ├── imported_assert.ref │ │ ├── imported_assert.xl │ │ ├── include.ref │ │ ├── include.xl │ │ ├── include_recursive.ref │ │ ├── include_recursive.xl │ │ ├── macro_recursive.ref │ │ ├── macro_recursive.xl │ │ ├── macros.ref │ │ ├── macros.xl │ │ ├── setting_constants.ref │ │ └── setting_constants.xl │ ├── 12.Library │ │ ├── allocate_memory.ref │ │ ├── allocate_memory.xl │ │ ├── basic_math.ref │ │ ├── basic_math.xl │ │ ├── demichel-abort.ref │ │ ├── demichel-abort.xl │ │ ├── demichel.ref │ │ ├── demichel.xl │ │ ├── hello_world.ref │ │ ├── hello_world.xl │ │ ├── hello_world_short.ref │ │ ├── hello_world_short.xl │ │ ├── instantiation_of_complex.ref │ │ ├── instantiation_of_complex.xl │ │ ├── instantiation_of_complex_by_name.ref │ │ ├── instantiation_of_complex_by_name.xl │ │ ├── julia.ref │ │ ├── julia.xl │ │ ├── mod_and_rem.ref │ │ ├── mod_and_rem.xl │ │ ├── range.ref │ │ └── range.xl │ ├── Makefile │ ├── alltests │ ├── alltests.awk │ ├── alltests_C │ ├── alltests_Java │ ├── alltests_default │ └── baseline.txt ├── compiler.xl ├── library │ ├── runtime │ │ ├── C │ │ │ ├── C.syntax │ │ │ ├── bytecode.stylesheet │ │ │ ├── dbghtml.stylesheet │ │ │ ├── debug.stylesheet │ │ │ ├── html.stylesheet │ │ │ ├── short.stylesheet │ │ │ ├── xl.bytecode │ │ │ ├── xl.stylesheet │ │ │ ├── xl.syntax │ │ │ ├── xl_builtins.xs │ │ │ └── xl_lib.h │ │ ├── Java │ │ │ ├── bytecode.stylesheet │ │ │ ├── dbghtml.stylesheet │ │ │ ├── debug.stylesheet │ │ │ ├── html.stylesheet │ │ │ ├── short.stylesheet │ │ │ ├── xl.bytecode │ │ │ ├── xl.stylesheet │ │ │ ├── xl.syntax │ │ │ ├── xl_builtins.xs │ │ │ └── xl_lib.h │ │ └── default │ ├── xl.array.basic.xs │ ├── xl.array.xs │ ├── xl.math.complex.xl │ ├── xl.math.complex.xs │ ├── xl.math.xs │ ├── xl.pointer.address.xs │ ├── xl.pointer.heap.xs │ ├── xl.pointer.machine_address.xs │ ├── xl.pointer.xs │ ├── xl.sized_integers.xs │ ├── xl.sized_reals.xs │ ├── xl.text_io.xl │ ├── xl.text_io.xs │ ├── xl.ui.console.xl │ ├── xl.ui.console.xs │ ├── xl.ui.xs │ └── xl.xs ├── make.msvc71.bat ├── xl.bytecode.xl ├── xl.bytecode.xs ├── xl.codegenerator.machine.xl ├── xl.codegenerator.machine.xs ├── xl.codegenerator.xl ├── xl.codegenerator.xs ├── xl.constants.xl ├── xl.constants.xs ├── xl.errors.xl ├── xl.errors.xs ├── xl.optimizer.xl ├── xl.optimizer.xs ├── xl.parser.tree.xl ├── xl.parser.tree.xs ├── xl.parser.xl ├── xl.parser.xs ├── xl.plugin.common.xl ├── xl.plugin.common.xs ├── xl.plugin.constantfold.xl ├── xl.plugin.define.xl ├── xl.plugin.differentiation.xl ├── xl.plugin.ifdefined.xl ├── xl.plugin.ifp.xl ├── xl.plugin.include.xl ├── xl.plugin.junk.xl ├── xl.plugin.listing.xl ├── xl.plugin.transforms.xl ├── xl.plugin.xl2c.xl ├── xl.renderer.xl ├── xl.renderer.xs ├── xl.scanner.position.xl ├── xl.scanner.position.xs ├── xl.scanner.xl ├── xl.scanner.xs ├── xl.semantics.declarations.xl ├── xl.semantics.declarations.xs ├── xl.semantics.functions.xl ├── xl.semantics.functions.xs ├── xl.semantics.generics.xl ├── xl.semantics.generics.xs ├── xl.semantics.instructions.xl ├── xl.semantics.instructions.xs ├── xl.semantics.iterators.xl ├── xl.semantics.iterators.xs ├── xl.semantics.macros.xl ├── xl.semantics.macros.xs ├── xl.semantics.modules.xl ├── xl.semantics.modules.xs ├── xl.semantics.overload.xl ├── xl.semantics.overload.xs ├── xl.semantics.pragmas.xl ├── xl.semantics.types.enumerations.xl ├── xl.semantics.types.enumerations.xs ├── xl.semantics.types.functions.xl ├── xl.semantics.types.functions.xs ├── xl.semantics.types.generics.xl ├── xl.semantics.types.generics.xs ├── xl.semantics.types.records.xl ├── xl.semantics.types.records.xs ├── xl.semantics.types.xl ├── xl.semantics.types.xs ├── xl.semantics.writtenforms.xl ├── xl.semantics.writtenforms.xs ├── xl.semantics.xl ├── xl.semantics.xs ├── xl.symbols.xl ├── xl.symbols.xs ├── xl.textio.encoding.ascii.xs ├── xl.textio.xl ├── xl.translator.xl ├── xl.translator.xs └── xl.ui.console.xs ├── www ├── 0406.txt ├── 040626.txt ├── 0407.txt ├── 040708.txt ├── 040714.txt ├── 040716.txt ├── 040720.txt ├── 040725.txt ├── 040726.txt ├── 0409.txt ├── 040904.txt ├── 040909.txt ├── 040911.txt ├── 040919.txt ├── 040925.txt ├── 040929.txt ├── 0410.txt ├── 041002.txt ├── 041003.txt ├── 041004.txt ├── 041006.txt ├── 041007.txt ├── 041009.txt ├── 041012.txt ├── 041017.txt ├── 041018.txt ├── 0411.txt ├── 041115.txt ├── 041118.txt ├── 041123.txt ├── 0511.txt ├── 051105.txt ├── 051109.txt ├── 0602.txt ├── 060204.txt ├── 060211.txt ├── 060212.txt ├── 060213.txt ├── 060221.txt ├── 0604.txt ├── 060409.txt ├── 060410.txt ├── 060411.txt ├── 060412.txt ├── 060413.txt ├── 060414.txt ├── 060415.txt ├── 060417.txt ├── 060419.txt ├── 060420.txt ├── 060421.txt ├── 060427.txt ├── 0605.txt ├── 060501.txt ├── 0606.txt ├── 060601.txt ├── 060610.txt ├── 060611.txt ├── 060612.txt ├── 060613.txt ├── 060616.txt ├── 060617.txt ├── 060619.txt ├── 060620.txt ├── 060621.txt ├── 0703.txt ├── 070320.txt ├── 0705.txt ├── 070502.txt ├── 0706.txt ├── 070622.txt ├── 070628.txt ├── 0707.txt ├── 070706.txt ├── 070715.txt ├── 070718.txt ├── 070725.txt ├── 0711.txt ├── 071110.txt ├── 071117.txt ├── 0804.txt ├── 080408.txt ├── 0807.txt ├── 080722.txt ├── 080726.txt ├── 0809.txt ├── 080926.txt ├── 0810.txt ├── 081013.txt ├── 081014.txt ├── 081031.txt ├── concept │ ├── MooreFeast.jpg │ ├── MooreLinux.jpg │ ├── Paradigms.jpg │ ├── Paradigms.png │ ├── XL.txt │ ├── anything.txt │ ├── bandwidth.txt │ ├── code.txt │ ├── complexity.txt │ ├── concept-cast.txt │ ├── concept.txt │ ├── cp.txt │ ├── data.txt │ ├── diverge.txt │ ├── dsl.txt │ ├── expred.txt │ ├── extension.txt │ ├── generic-validation.txt │ ├── generics.txt │ ├── language_limits.txt │ ├── metrics.txt │ ├── moore.txt │ ├── objects.txt │ ├── operators.txt │ ├── perf.txt │ ├── pragma.txt │ ├── problem.txt │ ├── process.txt │ ├── representations.txt │ ├── script.txt │ ├── semantics.txt │ ├── semnoise.txt │ ├── signoise.txt │ ├── synnoise.txt │ ├── syntax.txt │ ├── top.txt │ ├── toplevel.txt │ ├── truegen.txt │ ├── variadics.txt │ ├── xl012.txt │ └── xroma-dim.png ├── content-template.tmpl ├── day-template.tmpl ├── examples │ ├── average.txt │ ├── complex.txt │ ├── decl.txt │ ├── diff.txt │ ├── factorial.txt │ ├── function.txt │ ├── generic.txt │ ├── gui.txt │ ├── hello.txt │ ├── inout.txt │ ├── maximum.txt │ ├── numbers.txt │ ├── object.txt │ ├── operators.txt │ ├── prolog.txt │ ├── quote.txt │ ├── statements.txt │ ├── string.txt │ ├── tasking.txt │ ├── text.txt │ ├── top.txt │ ├── translate.txt │ ├── writeln.txt │ ├── written.txt │ └── xroma-dim.png ├── inside │ ├── algorithms.txt │ ├── binaryio.txt │ ├── bootstrap.txt │ ├── build.txt │ ├── bytecode.txt │ ├── containers.txt │ ├── declarations.txt │ ├── default.txt │ ├── errors.txt │ ├── exceptions.txt │ ├── expred.txt │ ├── functions.txt │ ├── generics.txt │ ├── library.txt │ ├── lookup.txt │ ├── math.txt │ ├── object_model.txt │ ├── objects.txt │ ├── operators.txt │ ├── overload.txt │ ├── parser.txt │ ├── plugins.txt │ ├── pragma.txt │ ├── scanner.txt │ ├── scope_data.txt │ ├── statements.txt │ ├── status.txt │ ├── symbols.txt │ ├── tests.txt │ ├── text.txt │ ├── textio.txt │ ├── top.txt │ ├── translation.txt │ ├── tree.txt │ ├── types.txt │ ├── variadics.txt │ ├── vasm.txt │ ├── vm.txt │ ├── xl0.txt │ └── xroma-dim.png ├── page-template.tmpl ├── shortcuts.el ├── side-links.inc ├── story-template.tmpl ├── weblog.ini └── xroma-dim.png ├── xl.el ├── xl2.sln └── xl2.vcproj /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/README.md -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/configure -------------------------------------------------------------------------------- /demo/1-hello.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/demo/1-hello.xl -------------------------------------------------------------------------------- /demo/10-pass-variable-around.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/demo/10-pass-variable-around.xl -------------------------------------------------------------------------------- /demo/2-many-writes.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/demo/2-many-writes.xl -------------------------------------------------------------------------------- /demo/3-loops-on-target.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/demo/3-loops-on-target.xl -------------------------------------------------------------------------------- /demo/4-get-temperature.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/demo/4-get-temperature.xl -------------------------------------------------------------------------------- /demo/5-temp-variation.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/demo/5-temp-variation.xl -------------------------------------------------------------------------------- /demo/6-temp-average.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/demo/6-temp-average.xl -------------------------------------------------------------------------------- /demo/7-two-hops.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/demo/7-two-hops.xl -------------------------------------------------------------------------------- /demo/8-report-temperature-changes.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/demo/8-report-temperature-changes.xl -------------------------------------------------------------------------------- /demo/9-min-max-average.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/demo/9-min-max-average.xl -------------------------------------------------------------------------------- /docs/HANDBOOK.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/HANDBOOK.adoc -------------------------------------------------------------------------------- /docs/HANDBOOK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/HANDBOOK.html -------------------------------------------------------------------------------- /docs/HANDBOOK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/HANDBOOK.pdf -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/XL_Reference_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/XL_Reference_Manual.pdf -------------------------------------------------------------------------------- /docs/XL_Reference_Manual.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/XL_Reference_Manual.tm -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/highlight/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/CHANGES.md -------------------------------------------------------------------------------- /docs/highlight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/LICENSE -------------------------------------------------------------------------------- /docs/highlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/README.md -------------------------------------------------------------------------------- /docs/highlight/README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/README.ru.md -------------------------------------------------------------------------------- /docs/highlight/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/highlight.min.js -------------------------------------------------------------------------------- /docs/highlight/styles/a11y-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/a11y-dark.css -------------------------------------------------------------------------------- /docs/highlight/styles/a11y-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/a11y-light.css -------------------------------------------------------------------------------- /docs/highlight/styles/agate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/agate.css -------------------------------------------------------------------------------- /docs/highlight/styles/an-old-hope.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/an-old-hope.css -------------------------------------------------------------------------------- /docs/highlight/styles/androidstudio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/androidstudio.css -------------------------------------------------------------------------------- /docs/highlight/styles/arduino-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/arduino-light.css -------------------------------------------------------------------------------- /docs/highlight/styles/arta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/arta.css -------------------------------------------------------------------------------- /docs/highlight/styles/ascetic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/ascetic.css -------------------------------------------------------------------------------- /docs/highlight/styles/atom-one-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/atom-one-dark.css -------------------------------------------------------------------------------- /docs/highlight/styles/atom-one-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/atom-one-light.css -------------------------------------------------------------------------------- /docs/highlight/styles/brown-paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/brown-paper.css -------------------------------------------------------------------------------- /docs/highlight/styles/brown-papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/brown-papersq.png -------------------------------------------------------------------------------- /docs/highlight/styles/codepen-embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/codepen-embed.css -------------------------------------------------------------------------------- /docs/highlight/styles/color-brewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/color-brewer.css -------------------------------------------------------------------------------- /docs/highlight/styles/darcula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/darcula.css -------------------------------------------------------------------------------- /docs/highlight/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/dark.css -------------------------------------------------------------------------------- /docs/highlight/styles/darkula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/darkula.css -------------------------------------------------------------------------------- /docs/highlight/styles/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/default.css -------------------------------------------------------------------------------- /docs/highlight/styles/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/docco.css -------------------------------------------------------------------------------- /docs/highlight/styles/dracula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/dracula.css -------------------------------------------------------------------------------- /docs/highlight/styles/far.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/far.css -------------------------------------------------------------------------------- /docs/highlight/styles/foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/foundation.css -------------------------------------------------------------------------------- /docs/highlight/styles/github-gist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/github-gist.css -------------------------------------------------------------------------------- /docs/highlight/styles/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/github.css -------------------------------------------------------------------------------- /docs/highlight/styles/github.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/github.min.css -------------------------------------------------------------------------------- /docs/highlight/styles/gml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/gml.css -------------------------------------------------------------------------------- /docs/highlight/styles/googlecode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/googlecode.css -------------------------------------------------------------------------------- /docs/highlight/styles/gradient-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/gradient-dark.css -------------------------------------------------------------------------------- /docs/highlight/styles/grayscale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/grayscale.css -------------------------------------------------------------------------------- /docs/highlight/styles/gruvbox-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/gruvbox-dark.css -------------------------------------------------------------------------------- /docs/highlight/styles/gruvbox-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/gruvbox-light.css -------------------------------------------------------------------------------- /docs/highlight/styles/hopscotch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/hopscotch.css -------------------------------------------------------------------------------- /docs/highlight/styles/hybrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/hybrid.css -------------------------------------------------------------------------------- /docs/highlight/styles/idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/idea.css -------------------------------------------------------------------------------- /docs/highlight/styles/ir-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/ir-black.css -------------------------------------------------------------------------------- /docs/highlight/styles/kimbie.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/kimbie.dark.css -------------------------------------------------------------------------------- /docs/highlight/styles/kimbie.light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/kimbie.light.css -------------------------------------------------------------------------------- /docs/highlight/styles/lightfair.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/lightfair.css -------------------------------------------------------------------------------- /docs/highlight/styles/magula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/magula.css -------------------------------------------------------------------------------- /docs/highlight/styles/mono-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/mono-blue.css -------------------------------------------------------------------------------- /docs/highlight/styles/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/monokai.css -------------------------------------------------------------------------------- /docs/highlight/styles/night-owl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/night-owl.css -------------------------------------------------------------------------------- /docs/highlight/styles/nord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/nord.css -------------------------------------------------------------------------------- /docs/highlight/styles/obsidian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/obsidian.css -------------------------------------------------------------------------------- /docs/highlight/styles/ocean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/ocean.css -------------------------------------------------------------------------------- /docs/highlight/styles/paraiso-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/paraiso-dark.css -------------------------------------------------------------------------------- /docs/highlight/styles/paraiso-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/paraiso-light.css -------------------------------------------------------------------------------- /docs/highlight/styles/pojoaque.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/pojoaque.css -------------------------------------------------------------------------------- /docs/highlight/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/pojoaque.jpg -------------------------------------------------------------------------------- /docs/highlight/styles/purebasic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/purebasic.css -------------------------------------------------------------------------------- /docs/highlight/styles/qtcreator_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/qtcreator_dark.css -------------------------------------------------------------------------------- /docs/highlight/styles/railscasts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/railscasts.css -------------------------------------------------------------------------------- /docs/highlight/styles/rainbow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/rainbow.css -------------------------------------------------------------------------------- /docs/highlight/styles/routeros.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/routeros.css -------------------------------------------------------------------------------- /docs/highlight/styles/school-book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/school-book.css -------------------------------------------------------------------------------- /docs/highlight/styles/school-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/school-book.png -------------------------------------------------------------------------------- /docs/highlight/styles/solarized-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/solarized-dark.css -------------------------------------------------------------------------------- /docs/highlight/styles/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/sunburst.css -------------------------------------------------------------------------------- /docs/highlight/styles/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/tomorrow-night.css -------------------------------------------------------------------------------- /docs/highlight/styles/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/tomorrow.css -------------------------------------------------------------------------------- /docs/highlight/styles/vs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/vs.css -------------------------------------------------------------------------------- /docs/highlight/styles/vs2015.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/vs2015.css -------------------------------------------------------------------------------- /docs/highlight/styles/xcode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/xcode.css -------------------------------------------------------------------------------- /docs/highlight/styles/xt256.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/xt256.css -------------------------------------------------------------------------------- /docs/highlight/styles/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/highlight/styles/zenburn.css -------------------------------------------------------------------------------- /docs/images/Tao3D-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/images/Tao3D-clock.png -------------------------------------------------------------------------------- /docs/images/tao3d-slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/images/tao3d-slide.jpg -------------------------------------------------------------------------------- /docs/images/tao3dtheme1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/docs/images/tao3dtheme1.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | HANDBOOK.html -------------------------------------------------------------------------------- /include/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/action.h -------------------------------------------------------------------------------- /include/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/atomic.h -------------------------------------------------------------------------------- /include/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/base.h -------------------------------------------------------------------------------- /include/basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/basics.h -------------------------------------------------------------------------------- /include/basics.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/basics.tbl -------------------------------------------------------------------------------- /include/bytecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/bytecode.h -------------------------------------------------------------------------------- /include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/context.h -------------------------------------------------------------------------------- /include/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/errors.h -------------------------------------------------------------------------------- /include/evaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/evaluator.h -------------------------------------------------------------------------------- /include/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/gc.h -------------------------------------------------------------------------------- /include/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/info.h -------------------------------------------------------------------------------- /include/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/interpreter.h -------------------------------------------------------------------------------- /include/io.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/io.tbl -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/main.h -------------------------------------------------------------------------------- /include/math.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/math.tbl -------------------------------------------------------------------------------- /include/native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/native.h -------------------------------------------------------------------------------- /include/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/opcodes.h -------------------------------------------------------------------------------- /include/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/options.h -------------------------------------------------------------------------------- /include/ownership.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/ownership.h -------------------------------------------------------------------------------- /include/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/parser.h -------------------------------------------------------------------------------- /include/postorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/postorder.h -------------------------------------------------------------------------------- /include/refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/refcount.h -------------------------------------------------------------------------------- /include/remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/remote.h -------------------------------------------------------------------------------- /include/remote.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/remote.tbl -------------------------------------------------------------------------------- /include/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/renderer.h -------------------------------------------------------------------------------- /include/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/runtime.h -------------------------------------------------------------------------------- /include/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/save.h -------------------------------------------------------------------------------- /include/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/scanner.h -------------------------------------------------------------------------------- /include/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/serializer.h -------------------------------------------------------------------------------- /include/syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/syntax.h -------------------------------------------------------------------------------- /include/temperature.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/temperature.tbl -------------------------------------------------------------------------------- /include/text.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/text.tbl -------------------------------------------------------------------------------- /include/time_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/time_functions.h -------------------------------------------------------------------------------- /include/time_functions.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/time_functions.tbl -------------------------------------------------------------------------------- /include/tree-clone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/tree-clone.h -------------------------------------------------------------------------------- /include/tree-walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/tree-walk.h -------------------------------------------------------------------------------- /include/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/tree.h -------------------------------------------------------------------------------- /include/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/utf8.h -------------------------------------------------------------------------------- /include/utf8_fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/utf8_fileutils.h -------------------------------------------------------------------------------- /include/valgrind/memcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/valgrind/memcheck.h -------------------------------------------------------------------------------- /include/valgrind/valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/valgrind/valgrind.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/version.h -------------------------------------------------------------------------------- /include/winglob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/include/winglob.h -------------------------------------------------------------------------------- /lldb/xlcmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/lldb/xlcmds.py -------------------------------------------------------------------------------- /native/docs/STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/docs/STYLE.md -------------------------------------------------------------------------------- /native/lib/xl.algorithms.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.algorithms.xs -------------------------------------------------------------------------------- /native/lib/xl.compiler.symbol.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.compiler.symbol.xs -------------------------------------------------------------------------------- /native/lib/xl.compiler.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.compiler.xs -------------------------------------------------------------------------------- /native/lib/xl.data.alias.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.alias.xl -------------------------------------------------------------------------------- /native/lib/xl.data.alias.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.alias.xs -------------------------------------------------------------------------------- /native/lib/xl.data.collections.array.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.collections.array.xl -------------------------------------------------------------------------------- /native/lib/xl.data.collections.array.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.collections.array.xs -------------------------------------------------------------------------------- /native/lib/xl.data.collections.list.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.collections.list.xs -------------------------------------------------------------------------------- /native/lib/xl.data.collections.slice.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.collections.slice.xs -------------------------------------------------------------------------------- /native/lib/xl.data.collections.string.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.collections.string.xs -------------------------------------------------------------------------------- /native/lib/xl.data.enumeration.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.enumeration.xl -------------------------------------------------------------------------------- /native/lib/xl.data.enumeration.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.enumeration.xs -------------------------------------------------------------------------------- /native/lib/xl.data.iterator.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.iterator.xs -------------------------------------------------------------------------------- /native/lib/xl.data.sequence.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.sequence.xs -------------------------------------------------------------------------------- /native/lib/xl.data.stream.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.stream.xs -------------------------------------------------------------------------------- /native/lib/xl.data.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.data.xs -------------------------------------------------------------------------------- /native/lib/xl.math.complex.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.math.complex.xl -------------------------------------------------------------------------------- /native/lib/xl.math.complex.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.math.complex.xs -------------------------------------------------------------------------------- /native/lib/xl.math.functions.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.math.functions.xs -------------------------------------------------------------------------------- /native/lib/xl.math.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.math.xl -------------------------------------------------------------------------------- /native/lib/xl.math.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.math.xs -------------------------------------------------------------------------------- /native/lib/xl.operations.arithmetic.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.operations.arithmetic.xl -------------------------------------------------------------------------------- /native/lib/xl.operations.arithmetic.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.operations.arithmetic.xs -------------------------------------------------------------------------------- /native/lib/xl.operations.bitshift.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.operations.bitshift.xs -------------------------------------------------------------------------------- /native/lib/xl.operations.bitwise.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.operations.bitwise.xs -------------------------------------------------------------------------------- /native/lib/xl.operations.clone.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.operations.clone.xs -------------------------------------------------------------------------------- /native/lib/xl.operations.comparison.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.operations.comparison.xs -------------------------------------------------------------------------------- /native/lib/xl.operations.copy.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.operations.copy.xs -------------------------------------------------------------------------------- /native/lib/xl.operations.delete.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.operations.delete.xs -------------------------------------------------------------------------------- /native/lib/xl.operations.move.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.operations.move.xs -------------------------------------------------------------------------------- /native/lib/xl.operations.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.operations.xs -------------------------------------------------------------------------------- /native/lib/xl.program.contract.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.program.contract.xl -------------------------------------------------------------------------------- /native/lib/xl.program.contract.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.program.contract.xs -------------------------------------------------------------------------------- /native/lib/xl.program.error.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.program.error.xl -------------------------------------------------------------------------------- /native/lib/xl.program.error.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.program.error.xs -------------------------------------------------------------------------------- /native/lib/xl.program.module.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.program.module.xs -------------------------------------------------------------------------------- /native/lib/xl.program.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.program.xs -------------------------------------------------------------------------------- /native/lib/xl.system.configuration.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.system.configuration.xl -------------------------------------------------------------------------------- /native/lib/xl.system.configuration.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.system.configuration.xs -------------------------------------------------------------------------------- /native/lib/xl.system.memory.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.system.memory.xl -------------------------------------------------------------------------------- /native/lib/xl.system.memory.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.system.memory.xs -------------------------------------------------------------------------------- /native/lib/xl.system.types.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.system.types.xs -------------------------------------------------------------------------------- /native/lib/xl.system.version.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.system.version.xs -------------------------------------------------------------------------------- /native/lib/xl.system.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.system.xl -------------------------------------------------------------------------------- /native/lib/xl.system.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.system.xs -------------------------------------------------------------------------------- /native/lib/xl.types.boolean.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.boolean.xl -------------------------------------------------------------------------------- /native/lib/xl.types.boolean.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.boolean.xs -------------------------------------------------------------------------------- /native/lib/xl.types.character.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.character.xs -------------------------------------------------------------------------------- /native/lib/xl.types.combinations.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.combinations.xl -------------------------------------------------------------------------------- /native/lib/xl.types.combinations.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.combinations.xs -------------------------------------------------------------------------------- /native/lib/xl.types.conversions.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.conversions.xs -------------------------------------------------------------------------------- /native/lib/xl.types.decimal.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.decimal.xs -------------------------------------------------------------------------------- /native/lib/xl.types.enumerated.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.enumerated.xs -------------------------------------------------------------------------------- /native/lib/xl.types.generics.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.generics.xl -------------------------------------------------------------------------------- /native/lib/xl.types.generics.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.generics.xs -------------------------------------------------------------------------------- /native/lib/xl.types.integer.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.integer.xl -------------------------------------------------------------------------------- /native/lib/xl.types.integer.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.integer.xs -------------------------------------------------------------------------------- /native/lib/xl.types.lifetime.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.lifetime.xs -------------------------------------------------------------------------------- /native/lib/xl.types.number.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.number.xl -------------------------------------------------------------------------------- /native/lib/xl.types.number.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.number.xs -------------------------------------------------------------------------------- /native/lib/xl.types.pattern.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.pattern.xs -------------------------------------------------------------------------------- /native/lib/xl.types.range.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.range.xs -------------------------------------------------------------------------------- /native/lib/xl.types.real.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.real.xl -------------------------------------------------------------------------------- /native/lib/xl.types.real.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.real.xs -------------------------------------------------------------------------------- /native/lib/xl.types.text.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.text.xl -------------------------------------------------------------------------------- /native/lib/xl.types.text.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.text.xs -------------------------------------------------------------------------------- /native/lib/xl.types.type.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.type.xl -------------------------------------------------------------------------------- /native/lib/xl.types.type.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.type.xs -------------------------------------------------------------------------------- /native/lib/xl.types.unsafe.pointer.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.unsafe.pointer.xl -------------------------------------------------------------------------------- /native/lib/xl.types.unsafe.pointer.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.unsafe.pointer.xs -------------------------------------------------------------------------------- /native/lib/xl.types.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.types.xs -------------------------------------------------------------------------------- /native/lib/xl.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/native/lib/xl.xs -------------------------------------------------------------------------------- /src/C.syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/C.syntax -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/action.cpp -------------------------------------------------------------------------------- /src/alltests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/alltests -------------------------------------------------------------------------------- /src/builtins.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/builtins.xl -------------------------------------------------------------------------------- /src/bytecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/bytecode.cpp -------------------------------------------------------------------------------- /src/bytecode.stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/bytecode.stylesheet -------------------------------------------------------------------------------- /src/cdecls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/cdecls.cpp -------------------------------------------------------------------------------- /src/cdecls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/cdecls.h -------------------------------------------------------------------------------- /src/comments.stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/comments.stylesheet -------------------------------------------------------------------------------- /src/compiler-expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-expr.cpp -------------------------------------------------------------------------------- /src/compiler-expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-expr.h -------------------------------------------------------------------------------- /src/compiler-fast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-fast.cpp -------------------------------------------------------------------------------- /src/compiler-fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-fast.h -------------------------------------------------------------------------------- /src/compiler-function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-function.cpp -------------------------------------------------------------------------------- /src/compiler-function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-function.h -------------------------------------------------------------------------------- /src/compiler-primitives.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-primitives.tbl -------------------------------------------------------------------------------- /src/compiler-prototype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-prototype.cpp -------------------------------------------------------------------------------- /src/compiler-prototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-prototype.h -------------------------------------------------------------------------------- /src/compiler-rewrites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-rewrites.cpp -------------------------------------------------------------------------------- /src/compiler-rewrites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-rewrites.h -------------------------------------------------------------------------------- /src/compiler-types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-types.cpp -------------------------------------------------------------------------------- /src/compiler-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-types.h -------------------------------------------------------------------------------- /src/compiler-unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-unit.cpp -------------------------------------------------------------------------------- /src/compiler-unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler-unit.h -------------------------------------------------------------------------------- /src/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler.cpp -------------------------------------------------------------------------------- /src/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/compiler.h -------------------------------------------------------------------------------- /src/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/context.cpp -------------------------------------------------------------------------------- /src/dbghtml.stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/dbghtml.stylesheet -------------------------------------------------------------------------------- /src/debug.stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/debug.stylesheet -------------------------------------------------------------------------------- /src/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/errors.cpp -------------------------------------------------------------------------------- /src/fdstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/fdstream.hpp -------------------------------------------------------------------------------- /src/gc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/gc.cpp -------------------------------------------------------------------------------- /src/generate-module-body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/generate-module-body -------------------------------------------------------------------------------- /src/generate-module-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/generate-module-header -------------------------------------------------------------------------------- /src/html.stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/html.stylesheet -------------------------------------------------------------------------------- /src/interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/interpreter.cpp -------------------------------------------------------------------------------- /src/interpreter.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/interpreter.tbl -------------------------------------------------------------------------------- /src/llvm-crap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/llvm-crap.cpp -------------------------------------------------------------------------------- /src/llvm-crap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/llvm-crap.h -------------------------------------------------------------------------------- /src/llvm-crap.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/llvm-crap.tbl -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/native.cpp -------------------------------------------------------------------------------- /src/opcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/opcodes.cpp -------------------------------------------------------------------------------- /src/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/options.cpp -------------------------------------------------------------------------------- /src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/parser.cpp -------------------------------------------------------------------------------- /src/remote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/remote.cpp -------------------------------------------------------------------------------- /src/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/renderer.cpp -------------------------------------------------------------------------------- /src/rewrites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/rewrites.cpp -------------------------------------------------------------------------------- /src/rewrites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/rewrites.h -------------------------------------------------------------------------------- /src/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/runtime.cpp -------------------------------------------------------------------------------- /src/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/scanner.cpp -------------------------------------------------------------------------------- /src/serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/serializer.cpp -------------------------------------------------------------------------------- /src/short.stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/short.stylesheet -------------------------------------------------------------------------------- /src/syntax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/syntax.cpp -------------------------------------------------------------------------------- /src/tao.stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/tao.stylesheet -------------------------------------------------------------------------------- /src/test_gc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/test_gc.cpp -------------------------------------------------------------------------------- /src/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/tree.cpp -------------------------------------------------------------------------------- /src/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/types.cpp -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/types.h -------------------------------------------------------------------------------- /src/utf8_fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/utf8_fileutils.cpp -------------------------------------------------------------------------------- /src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/version.cpp -------------------------------------------------------------------------------- /src/winglob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/winglob.cpp -------------------------------------------------------------------------------- /src/xl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/xl.cpp -------------------------------------------------------------------------------- /src/xl.stylesheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/xl.stylesheet -------------------------------------------------------------------------------- /src/xl.syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/src/xl.syntax -------------------------------------------------------------------------------- /tests/00.Parser/C-syntax.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/C-syntax.ref -------------------------------------------------------------------------------- /tests/00.Parser/C-syntax.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/C-syntax.xl -------------------------------------------------------------------------------- /tests/00.Parser/base64.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/base64.ref -------------------------------------------------------------------------------- /tests/00.Parser/base64.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/base64.xl -------------------------------------------------------------------------------- /tests/00.Parser/binary-data-errors.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/binary-data-errors.ref -------------------------------------------------------------------------------- /tests/00.Parser/binary-data-errors.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/binary-data-errors.xl -------------------------------------------------------------------------------- /tests/00.Parser/binary-data.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/binary-data.ref -------------------------------------------------------------------------------- /tests/00.Parser/binary-data.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/binary-data.xl -------------------------------------------------------------------------------- /tests/00.Parser/bug346-O1.ref: -------------------------------------------------------------------------------- 1 | >> 2 | 00.Parser/bug346.xl:2: No prefix matches '<<>>>>' 3 | -------------------------------------------------------------------------------- /tests/00.Parser/bug346.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/bug346.ref -------------------------------------------------------------------------------- /tests/00.Parser/bug346.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/bug346.xl -------------------------------------------------------------------------------- /tests/00.Parser/comment-closing-backtrack.ref: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/00.Parser/fault-injection-stack.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/fault-injection-stack.xl -------------------------------------------------------------------------------- /tests/00.Parser/file-not-found.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/file-not-found.ref -------------------------------------------------------------------------------- /tests/00.Parser/file-not-found.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/file-not-found.xl -------------------------------------------------------------------------------- /tests/00.Parser/invalid-character.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/invalid-character.ref -------------------------------------------------------------------------------- /tests/00.Parser/invalid-character.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/invalid-character.xl -------------------------------------------------------------------------------- /tests/00.Parser/option-extra-arg.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/option-extra-arg.ref -------------------------------------------------------------------------------- /tests/00.Parser/option-extra-arg.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/option-extra-arg.xl -------------------------------------------------------------------------------- /tests/00.Parser/option-invalid-bool.ref: -------------------------------------------------------------------------------- 1 | 2 | : Invalid value "znort" for "builtins" option 3 | -------------------------------------------------------------------------------- /tests/00.Parser/option-invalid-bool.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/option-invalid-bool.xl -------------------------------------------------------------------------------- /tests/00.Parser/option-nonexistent.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/option-nonexistent.ref -------------------------------------------------------------------------------- /tests/00.Parser/option-nonexistent.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/option-nonexistent.xl -------------------------------------------------------------------------------- /tests/00.Parser/option-range-error-high.ref: -------------------------------------------------------------------------------- 1 | 2 | : Value 4 for option "O" is outside of 0..3 3 | -------------------------------------------------------------------------------- /tests/00.Parser/preserve_comments.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/preserve_comments.ref -------------------------------------------------------------------------------- /tests/00.Parser/preserve_comments.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/preserve_comments.xl -------------------------------------------------------------------------------- /tests/00.Parser/trailing_opcode.ref: -------------------------------------------------------------------------------- 1 | return 0; 2 | -------------------------------------------------------------------------------- /tests/00.Parser/trailing_opcode.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/00.Parser/trailing_opcode.xl -------------------------------------------------------------------------------- /tests/01.Evaluation/01-simple-writeln.ref: -------------------------------------------------------------------------------- 1 | Hello World 2 | true 3 | -------------------------------------------------------------------------------- /tests/01.Evaluation/02-complex-writeln.ref: -------------------------------------------------------------------------------- 1 | Hello World 2 | true 3 | -------------------------------------------------------------------------------- /tests/01.Evaluation/03-primitives.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/03-primitives.ref -------------------------------------------------------------------------------- /tests/01.Evaluation/03-primitives.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/03-primitives.xl -------------------------------------------------------------------------------- /tests/01.Evaluation/04-write-types.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/04-write-types.ref -------------------------------------------------------------------------------- /tests/01.Evaluation/04-write-types.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/04-write-types.xl -------------------------------------------------------------------------------- /tests/01.Evaluation/05-kind.ref: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | true 6 | -------------------------------------------------------------------------------- /tests/01.Evaluation/05-kind.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/05-kind.xl -------------------------------------------------------------------------------- /tests/01.Evaluation/06-Fibonacci.ref: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /tests/01.Evaluation/06-Fibonacci.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/06-Fibonacci.xl -------------------------------------------------------------------------------- /tests/01.Evaluation/07-simple-anonymous-function.ref: -------------------------------------------------------------------------------- 1 | 32 2 | -------------------------------------------------------------------------------- /tests/01.Evaluation/08-named-anonymous-function.ref: -------------------------------------------------------------------------------- 1 | 32 2 | -------------------------------------------------------------------------------- /tests/01.Evaluation/09-named-array.ref: -------------------------------------------------------------------------------- 1 | "B" 2 | -------------------------------------------------------------------------------- /tests/01.Evaluation/09-named-array.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/09-named-array.xl -------------------------------------------------------------------------------- /tests/01.Evaluation/10-anonymous-array.ref: -------------------------------------------------------------------------------- 1 | "One" 2 | -------------------------------------------------------------------------------- /tests/01.Evaluation/13-type-match.ref: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/01.Evaluation/13-type-match.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/13-type-match.xl -------------------------------------------------------------------------------- /tests/01.Evaluation/21-invalid-type-declaration-O0.ref: -------------------------------------------------------------------------------- 1 | 0:27 2 | 1:82 3 | 2:41 4 | 3:124 5 | -------------------------------------------------------------------------------- /tests/01.Evaluation/23-two-argument-anonymous-function.ref: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/01.Evaluation/bug2279.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/bug2279.ref -------------------------------------------------------------------------------- /tests/01.Evaluation/bug2279.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/bug2279.xl -------------------------------------------------------------------------------- /tests/01.Evaluation/bug3327.ref: -------------------------------------------------------------------------------- 1 | 23.1407 2 | -------------------------------------------------------------------------------- /tests/01.Evaluation/bug3327.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/bug3327.xl -------------------------------------------------------------------------------- /tests/01.Evaluation/factorial.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/factorial.ref -------------------------------------------------------------------------------- /tests/01.Evaluation/factorial.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/factorial.xl -------------------------------------------------------------------------------- /tests/01.Evaluation/version.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/version.ref -------------------------------------------------------------------------------- /tests/01.Evaluation/version.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/01.Evaluation/version.xl -------------------------------------------------------------------------------- /tests/02.Arithmetic/01-arith-add-fp.ref: -------------------------------------------------------------------------------- 1 | 3.8 2 | true 3 | -------------------------------------------------------------------------------- /tests/02.Arithmetic/01-arith-add-fp.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/02.Arithmetic/01-arith-add-fp.xl -------------------------------------------------------------------------------- /tests/02.Arithmetic/01-arith-add-with-const.ref: -------------------------------------------------------------------------------- 1 | 3 2 | true 3 | -------------------------------------------------------------------------------- /tests/02.Arithmetic/01-arith-add.ref: -------------------------------------------------------------------------------- 1 | 3 2 | true 3 | -------------------------------------------------------------------------------- /tests/02.Arithmetic/01-arith-add.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/02.Arithmetic/01-arith-add.xl -------------------------------------------------------------------------------- /tests/02.Arithmetic/01.arith-add-fp-with-const.ref: -------------------------------------------------------------------------------- 1 | 5.829 2 | true 3 | -------------------------------------------------------------------------------- /tests/02.Arithmetic/03-basic-fp.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/02.Arithmetic/03-basic-fp.ref -------------------------------------------------------------------------------- /tests/02.Arithmetic/03-basic-fp.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/02.Arithmetic/03-basic-fp.xl -------------------------------------------------------------------------------- /tests/02.Arithmetic/08-complex-add.ref: -------------------------------------------------------------------------------- 1 | (8.0, 10.0) 2 | -------------------------------------------------------------------------------- /tests/02.Arithmetic/08-complex-add.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/02.Arithmetic/08-complex-add.xl -------------------------------------------------------------------------------- /tests/03.Control/01-good-and-bad.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/01-good-and-bad.ref -------------------------------------------------------------------------------- /tests/03.Control/01-good-and-bad.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/01-good-and-bad.xl -------------------------------------------------------------------------------- /tests/03.Control/01-good.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/01-good.ref -------------------------------------------------------------------------------- /tests/03.Control/01-good.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/01-good.xl -------------------------------------------------------------------------------- /tests/03.Control/02-good-is-bad.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/02-good-is-bad.ref -------------------------------------------------------------------------------- /tests/03.Control/02-good-is-bad.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/02-good-is-bad.xl -------------------------------------------------------------------------------- /tests/03.Control/03-basic-if-then-else.ref: -------------------------------------------------------------------------------- 1 | Foo less than bar (GOOD) 2 | Finished 3 | true 4 | -------------------------------------------------------------------------------- /tests/03.Control/05-program-exit.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/03.Control/05-program-exit.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/05-program-exit.xl -------------------------------------------------------------------------------- /tests/03.Control/06-while-loop.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/06-while-loop.ref -------------------------------------------------------------------------------- /tests/03.Control/06-while-loop.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/06-while-loop.xl -------------------------------------------------------------------------------- /tests/03.Control/07-until-loop.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/07-until-loop.ref -------------------------------------------------------------------------------- /tests/03.Control/07-until-loop.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/07-until-loop.xl -------------------------------------------------------------------------------- /tests/03.Control/08-infinite-loop.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/08-infinite-loop.ref -------------------------------------------------------------------------------- /tests/03.Control/08-infinite-loop.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/03.Control/08-infinite-loop.xl -------------------------------------------------------------------------------- /tests/04.Text/01-length.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/04.Text/01-length.ref -------------------------------------------------------------------------------- /tests/04.Text/01-length.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/04.Text/01-length.xl -------------------------------------------------------------------------------- /tests/04.Text/02-concat.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/04.Text/02-concat.ref -------------------------------------------------------------------------------- /tests/04.Text/02-concat.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/04.Text/02-concat.xl -------------------------------------------------------------------------------- /tests/04.Text/03-contains.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/04.Text/03-contains.ref -------------------------------------------------------------------------------- /tests/04.Text/03-contains.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/04.Text/03-contains.xl -------------------------------------------------------------------------------- /tests/04.Text/04-replace.ref: -------------------------------------------------------------------------------- 1 | "ADED" 2 | -------------------------------------------------------------------------------- /tests/04.Text/04-replace.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/04.Text/04-replace.xl -------------------------------------------------------------------------------- /tests/05.Externals/extern-writeln-hello-world-integer-puts.ref: -------------------------------------------------------------------------------- 1 | Hello world 2 | 10 3 | -------------------------------------------------------------------------------- /tests/05.Externals/extern-writeln-hello-world.ref: -------------------------------------------------------------------------------- 1 | Hello world 2 | nil 3 | -------------------------------------------------------------------------------- /tests/10.Serialization/serialize.xl.ser: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/12.Manual/fig2a-BankAccount.ref: -------------------------------------------------------------------------------- 1 | Round of cakes and applause 2 | true 3 | -------------------------------------------------------------------------------- /tests/12.Manual/fig2a-BankAccount.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/12.Manual/fig2a-BankAccount.xl -------------------------------------------------------------------------------- /tests/12.Manual/fig2b-BankAccount.ref: -------------------------------------------------------------------------------- 1 | Warning shots fired 2 | true 3 | -------------------------------------------------------------------------------- /tests/12.Manual/fig2b-BankAccount.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/12.Manual/fig2b-BankAccount.xl -------------------------------------------------------------------------------- /tests/O3/add.ref: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /tests/O3/add.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/add.xl -------------------------------------------------------------------------------- /tests/O3/builtin-add.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-add.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-add.xl -------------------------------------------------------------------------------- /tests/O3/builtin-and.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-and.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-and.xl -------------------------------------------------------------------------------- /tests/O3/builtin-ashr.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-ashr.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-ashr.xl -------------------------------------------------------------------------------- /tests/O3/builtin-beq.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-beq.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-beq.xl -------------------------------------------------------------------------------- /tests/O3/builtin-bge.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-bge.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-bge.xl -------------------------------------------------------------------------------- /tests/O3/builtin-bgt.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-bgt.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-bgt.xl -------------------------------------------------------------------------------- /tests/O3/builtin-ble.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-ble.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-ble.xl -------------------------------------------------------------------------------- /tests/O3/builtin-blt.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-blt.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-blt.xl -------------------------------------------------------------------------------- /tests/O3/builtin-bne.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-bne.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-bne.xl -------------------------------------------------------------------------------- /tests/O3/builtin-div.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-div.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-div.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fabs.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fabs.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fabs.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fadd.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fadd.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fadd.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fdiv.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fdiv.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fdiv.xl -------------------------------------------------------------------------------- /tests/O3/builtin-feq.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-feq.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-feq.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fge.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fge.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fge.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fgt.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fgt.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fgt.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fle.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fle.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fle.xl -------------------------------------------------------------------------------- /tests/O3/builtin-flt.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-flt.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-flt.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fmod.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fmod.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fmod.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fmul.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fmul.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fmul.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fne.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fne.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fne.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fneg.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fneg.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fneg.xl -------------------------------------------------------------------------------- /tests/O3/builtin-frem.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-frem.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-frem.xl -------------------------------------------------------------------------------- /tests/O3/builtin-fsub.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-fsub.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-fsub.xl -------------------------------------------------------------------------------- /tests/O3/builtin-iabs.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-iabs.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-iabs.xl -------------------------------------------------------------------------------- /tests/O3/builtin-ieq.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-ieq.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-ieq.xl -------------------------------------------------------------------------------- /tests/O3/builtin-ige.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-ige.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-ige.xl -------------------------------------------------------------------------------- /tests/O3/builtin-igt.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-igt.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-igt.xl -------------------------------------------------------------------------------- /tests/O3/builtin-ile.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-ile.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-ile.xl -------------------------------------------------------------------------------- /tests/O3/builtin-ilt.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-ilt.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-ilt.xl -------------------------------------------------------------------------------- /tests/O3/builtin-ine.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-ine.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-ine.xl -------------------------------------------------------------------------------- /tests/O3/builtin-kind-block.ref: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-kind-block.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-kind-block.xl -------------------------------------------------------------------------------- /tests/O3/builtin-kind-infix.ref: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-kind-infix.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-kind-infix.xl -------------------------------------------------------------------------------- /tests/O3/builtin-kind-integer.ref: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-kind-integer.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-kind-integer.xl -------------------------------------------------------------------------------- /tests/O3/builtin-kind-postfix.ref: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-kind-postfix.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-kind-postfix.xl -------------------------------------------------------------------------------- /tests/O3/builtin-kind-prefix.ref: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-kind-prefix.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-kind-prefix.xl -------------------------------------------------------------------------------- /tests/O3/builtin-kind-real.ref: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-kind-real.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-kind-real.xl -------------------------------------------------------------------------------- /tests/O3/builtin-kind-text.ref: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-kind-text.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-kind-text.xl -------------------------------------------------------------------------------- /tests/O3/builtin-left.ref: -------------------------------------------------------------------------------- 1 | "Hello" 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-left.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-left.xl -------------------------------------------------------------------------------- /tests/O3/builtin-lshr.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-lshr.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-lshr.xl -------------------------------------------------------------------------------- /tests/O3/builtin-mod.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-mod.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-mod.xl -------------------------------------------------------------------------------- /tests/O3/builtin-mul.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-mul.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-mul.xl -------------------------------------------------------------------------------- /tests/O3/builtin-name.ref: -------------------------------------------------------------------------------- 1 | "," 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-name.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-name.xl -------------------------------------------------------------------------------- /tests/O3/builtin-neg.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-neg.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-neg.xl -------------------------------------------------------------------------------- /tests/O3/builtin-or.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-or.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-or.xl -------------------------------------------------------------------------------- /tests/O3/builtin-paren-noeval.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-paren-noeval.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-paren-noeval.xl -------------------------------------------------------------------------------- /tests/O3/builtin-rem.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-rem.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-rem.xl -------------------------------------------------------------------------------- /tests/O3/builtin-right.ref: -------------------------------------------------------------------------------- 1 | "World" 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-right.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-right.xl -------------------------------------------------------------------------------- /tests/O3/builtin-shl.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-shl.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-shl.xl -------------------------------------------------------------------------------- /tests/O3/builtin-sub.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-sub.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-sub.xl -------------------------------------------------------------------------------- /tests/O3/builtin-teq.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-teq.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-teq.xl -------------------------------------------------------------------------------- /tests/O3/builtin-tge.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-tge.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-tge.xl -------------------------------------------------------------------------------- /tests/O3/builtin-tgt.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-tgt.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-tgt.xl -------------------------------------------------------------------------------- /tests/O3/builtin-tle.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-tle.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-tle.xl -------------------------------------------------------------------------------- /tests/O3/builtin-tlt.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-tlt.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-tlt.xl -------------------------------------------------------------------------------- /tests/O3/builtin-tne.ref: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-tne.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-tne.xl -------------------------------------------------------------------------------- /tests/O3/builtin-xor.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/builtin-xor.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/builtin-xor.xl -------------------------------------------------------------------------------- /tests/O3/extern-acos.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-acos.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-acos.xl -------------------------------------------------------------------------------- /tests/O3/extern-asin.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-asin.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-asin.xl -------------------------------------------------------------------------------- /tests/O3/extern-atan.ref: -------------------------------------------------------------------------------- 1 | -157.792 2 | -------------------------------------------------------------------------------- /tests/O3/extern-atan.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-atan.xl -------------------------------------------------------------------------------- /tests/O3/extern-cos.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-cos.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-cos.xl -------------------------------------------------------------------------------- /tests/O3/extern-exp.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-exp.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-exp.xl -------------------------------------------------------------------------------- /tests/O3/extern-expm1.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-expm1.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-expm1.xl -------------------------------------------------------------------------------- /tests/O3/extern-log.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-log.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-log.xl -------------------------------------------------------------------------------- /tests/O3/extern-log10.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-log10.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-log10.xl -------------------------------------------------------------------------------- /tests/O3/extern-log1p.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-log1p.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-log1p.xl -------------------------------------------------------------------------------- /tests/O3/extern-log2.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-log2.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-log2.xl -------------------------------------------------------------------------------- /tests/O3/extern-pi.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-pi.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-pi.xl -------------------------------------------------------------------------------- /tests/O3/extern-sin.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-sin.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-sin.xl -------------------------------------------------------------------------------- /tests/O3/extern-sqrt.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-sqrt.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-sqrt.xl -------------------------------------------------------------------------------- /tests/O3/extern-tan.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/extern-tan.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-tan.xl -------------------------------------------------------------------------------- /tests/O3/extern-writeln-hello-world-O3.ref: -------------------------------------------------------------------------------- 1 | Hello world 2 | nil 3 | -------------------------------------------------------------------------------- /tests/O3/extern-writeln-hello-world-integer-puts-O3.ref: -------------------------------------------------------------------------------- 1 | Hello world 2 | OK 3 | -------------------------------------------------------------------------------- /tests/O3/extern-writeln-hello-world.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/extern-writeln-hello-world.xl -------------------------------------------------------------------------------- /tests/O3/factorial-O3.ref: -------------------------------------------------------------------------------- 1 | 720 2 | -------------------------------------------------------------------------------- /tests/O3/factorial.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/factorial.xl -------------------------------------------------------------------------------- /tests/O3/fibonacci-O3.ref: -------------------------------------------------------------------------------- 1 | 987 2 | -------------------------------------------------------------------------------- /tests/O3/fibonacci-type-conflict.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/fibonacci-type-conflict.xl -------------------------------------------------------------------------------- /tests/O3/fibonacci.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/fibonacci.xl -------------------------------------------------------------------------------- /tests/O3/float-expression.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/float-expression.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/float-expression.xl -------------------------------------------------------------------------------- /tests/O3/library-writeln-list.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/library-writeln-list.xl -------------------------------------------------------------------------------- /tests/O3/library-writeln.ref: -------------------------------------------------------------------------------- 1 | Hello World 2 | true 3 | -------------------------------------------------------------------------------- /tests/O3/library-writeln.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/library-writeln.xl -------------------------------------------------------------------------------- /tests/O3/return-self-tree.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/return-self-tree.ref -------------------------------------------------------------------------------- /tests/O3/return-self-tree.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/return-self-tree.xl -------------------------------------------------------------------------------- /tests/O3/self-comma-list.ref: -------------------------------------------------------------------------------- 1 | "Hello", "World", 1, '2', 3, 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/self-comma-list.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/self-comma-list.xl -------------------------------------------------------------------------------- /tests/O3/simple-character.ref: -------------------------------------------------------------------------------- 1 | 'Y' 2 | -------------------------------------------------------------------------------- /tests/O3/simple-character.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/simple-character.xl -------------------------------------------------------------------------------- /tests/O3/simple-integer.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/O3/simple-integer.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/simple-integer.xl -------------------------------------------------------------------------------- /tests/O3/simple-real.ref: -------------------------------------------------------------------------------- 1 | 42.42 2 | -------------------------------------------------------------------------------- /tests/O3/simple-real.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/simple-real.xl -------------------------------------------------------------------------------- /tests/O3/simple-text.ref: -------------------------------------------------------------------------------- 1 | "Hello world" 2 | -------------------------------------------------------------------------------- /tests/O3/simple-text.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/simple-text.xl -------------------------------------------------------------------------------- /tests/O3/unknown-external-O3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/unknown-external-O3.ref -------------------------------------------------------------------------------- /tests/O3/unknown-external.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/O3/unknown-external.xl -------------------------------------------------------------------------------- /tests/alltests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/alltests -------------------------------------------------------------------------------- /tests/alltests.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/alltests.awk -------------------------------------------------------------------------------- /tests/alltests_C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/alltests_C -------------------------------------------------------------------------------- /tests/alltests_Java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/alltests_Java -------------------------------------------------------------------------------- /tests/alltests_O0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/alltests_O0 -------------------------------------------------------------------------------- /tests/alltests_O1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/alltests_O1 -------------------------------------------------------------------------------- /tests/alltests_O2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/alltests_O2 -------------------------------------------------------------------------------- /tests/alltests_O3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/alltests_O3 -------------------------------------------------------------------------------- /tests/alltests_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/alltests_default -------------------------------------------------------------------------------- /tests/baseline-O0.txt: -------------------------------------------------------------------------------- 1 | 02.Arithmetic/08c-complex-add-with-unnamed-prefix.xl 2 | -------------------------------------------------------------------------------- /tests/baseline-O1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/baseline-O1.txt -------------------------------------------------------------------------------- /tests/baseline-O2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/baseline-O2.txt -------------------------------------------------------------------------------- /tests/baseline-O3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/baseline-O3.txt -------------------------------------------------------------------------------- /tests/baseline-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/baseline-default.txt -------------------------------------------------------------------------------- /tests/baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/tests/baseline.txt -------------------------------------------------------------------------------- /xl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl.spec -------------------------------------------------------------------------------- /xl2/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/.gdb_history -------------------------------------------------------------------------------- /xl2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/COPYING -------------------------------------------------------------------------------- /xl2/Compile_msvc_CmdLine.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/Compile_msvc_CmdLine.bat -------------------------------------------------------------------------------- /xl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/Makefile -------------------------------------------------------------------------------- /xl2/Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/Makefile.rules -------------------------------------------------------------------------------- /xl2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/README -------------------------------------------------------------------------------- /xl2/README.Win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/README.Win32 -------------------------------------------------------------------------------- /xl2/samples/HelloWorld/HelloWorld.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/samples/HelloWorld/HelloWorld.xl -------------------------------------------------------------------------------- /xl2/samples/TestIncludePlugin/ForInclude.inc: -------------------------------------------------------------------------------- 1 | Message : text := "Hello World From Include" 2 | -------------------------------------------------------------------------------- /xl2/stage.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage.mk -------------------------------------------------------------------------------- /xl2/stage0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/Makefile -------------------------------------------------------------------------------- /xl2/stage0/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/base.h -------------------------------------------------------------------------------- /xl2/stage0/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/configuration.h -------------------------------------------------------------------------------- /xl2/stage0/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/context.cpp -------------------------------------------------------------------------------- /xl2/stage0/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/context.h -------------------------------------------------------------------------------- /xl2/stage0/ctrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/ctrans.cpp -------------------------------------------------------------------------------- /xl2/stage0/ctrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/ctrans.h -------------------------------------------------------------------------------- /xl2/stage0/ctrans.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/ctrans.tbl -------------------------------------------------------------------------------- /xl2/stage0/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/errors.cpp -------------------------------------------------------------------------------- /xl2/stage0/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/errors.h -------------------------------------------------------------------------------- /xl2/stage0/errors.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/errors.tbl -------------------------------------------------------------------------------- /xl2/stage0/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/errors.txt -------------------------------------------------------------------------------- /xl2/stage0/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/main.cpp -------------------------------------------------------------------------------- /xl2/stage0/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/options.cpp -------------------------------------------------------------------------------- /xl2/stage0/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/options.h -------------------------------------------------------------------------------- /xl2/stage0/options.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/options.tbl -------------------------------------------------------------------------------- /xl2/stage0/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/parser.cpp -------------------------------------------------------------------------------- /xl2/stage0/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/parser.h -------------------------------------------------------------------------------- /xl2/stage0/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/scanner.cpp -------------------------------------------------------------------------------- /xl2/stage0/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/scanner.h -------------------------------------------------------------------------------- /xl2/stage0/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/tree.cpp -------------------------------------------------------------------------------- /xl2/stage0/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/tree.h -------------------------------------------------------------------------------- /xl2/stage0/xl.syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/xl.syntax -------------------------------------------------------------------------------- /xl2/stage0/xl_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage0/xl_lib.h -------------------------------------------------------------------------------- /xl2/stage1/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/.cvsignore -------------------------------------------------------------------------------- /xl2/stage1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/Makefile -------------------------------------------------------------------------------- /xl2/stage1/compiler.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/compiler.xl -------------------------------------------------------------------------------- /xl2/stage1/make.msvc71.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/make.msvc71.bat -------------------------------------------------------------------------------- /xl2/stage1/xl.errors.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.errors.xl -------------------------------------------------------------------------------- /xl2/stage1/xl.errors.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.errors.xs -------------------------------------------------------------------------------- /xl2/stage1/xl.parser.tree.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.parser.tree.xl -------------------------------------------------------------------------------- /xl2/stage1/xl.parser.tree.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.parser.tree.xs -------------------------------------------------------------------------------- /xl2/stage1/xl.parser.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.parser.xl -------------------------------------------------------------------------------- /xl2/stage1/xl.parser.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.parser.xs -------------------------------------------------------------------------------- /xl2/stage1/xl.scanner.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.scanner.xl -------------------------------------------------------------------------------- /xl2/stage1/xl.scanner.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.scanner.xs -------------------------------------------------------------------------------- /xl2/stage1/xl.textio.encoding.ascii.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.textio.encoding.ascii.xs -------------------------------------------------------------------------------- /xl2/stage1/xl.textio.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.textio.xl -------------------------------------------------------------------------------- /xl2/stage1/xl.translator.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.translator.xl -------------------------------------------------------------------------------- /xl2/stage1/xl.translator.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.translator.xs -------------------------------------------------------------------------------- /xl2/stage1/xl.ui.console.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage1/xl.ui.console.xs -------------------------------------------------------------------------------- /xl2/stage2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/Makefile -------------------------------------------------------------------------------- /xl2/stage2/TESTS/01.Parser/infix.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/01.Parser/infix.ref -------------------------------------------------------------------------------- /xl2/stage2/TESTS/01.Parser/infix.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/01.Parser/infix.xl -------------------------------------------------------------------------------- /xl2/stage2/TESTS/01.Parser/integers.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/01.Parser/integers.xl -------------------------------------------------------------------------------- /xl2/stage2/TESTS/01.Parser/prefix.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/01.Parser/prefix.ref -------------------------------------------------------------------------------- /xl2/stage2/TESTS/01.Parser/prefix.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/01.Parser/prefix.xl -------------------------------------------------------------------------------- /xl2/stage2/TESTS/01.Parser/reals.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/01.Parser/reals.ref -------------------------------------------------------------------------------- /xl2/stage2/TESTS/01.Parser/reals.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/01.Parser/reals.xl -------------------------------------------------------------------------------- /xl2/stage2/TESTS/01.Parser/text.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/01.Parser/text.ref -------------------------------------------------------------------------------- /xl2/stage2/TESTS/01.Parser/text.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/01.Parser/text.xl -------------------------------------------------------------------------------- /xl2/stage2/TESTS/03.Declarations/basic_declarations.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/03.Declarations/direct_constructor_invokation.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/04.Lookup/forward_declaration.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/04.Lookup/type_redefined_once.ref: -------------------------------------------------------------------------------- 1 | Real default constructor called 2 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/05.Expressions/multi-reduction.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/06.Functions/arithmetic-operator-ambiguity.ref: -------------------------------------------------------------------------------- 1 | Sum=26 2 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/06.Functions/global_code.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/06.Functions/once.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/06.Functions/once.ref -------------------------------------------------------------------------------- /xl2/stage2/TESTS/06.Functions/once.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/06.Functions/once.xl -------------------------------------------------------------------------------- /xl2/stage2/TESTS/06.Functions/overload_resolution.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/06.Functions/parameter_scopes.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/06.Functions/preconditions_and_postconditions.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/07.Plugins/differentiation.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/07.Plugins/listing.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/07.Plugins/listing.xl -------------------------------------------------------------------------------- /xl2/stage2/TESTS/07.Plugins/tentative_pragma.ref: -------------------------------------------------------------------------------- 1 | K=1 2 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/08.Aggregates/basic_records.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/08.Aggregates/boolean-type.ref: -------------------------------------------------------------------------------- 1 | TRUE=1 2 | FALSE=0 3 | RESULT=1 4 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/08.Aggregates/constructors.ref: -------------------------------------------------------------------------------- 1 | Initializing an integer 2 | X=33 3 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/08.Aggregates/generated_constructor_and_copy.ref: -------------------------------------------------------------------------------- 1 | X=0:0 2 | Z=3:5 3 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/08.Aggregates/generic_bytecode_type.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/08.Aggregates/module_definition.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/08.Aggregates/pointer.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/08.Aggregates/sub-fields.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/08.Aggregates/using.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/09.Modules/bad_module.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/09.Modules/import_simple_module.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/09.Modules/import_simple_module_using.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/09.Modules/nested_import.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/09.Modules/outer_import.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/09.Modules/simple_import.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/09.Modules/simple_module.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/09.Modules/simple_module_definition.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/any_lookup.ref: -------------------------------------------------------------------------------- 1 | Called the hidden Invoke with A=3 2 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/deduction_by_parameter.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/default_generic_arguments.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/double_pair.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/generic_written.ref: -------------------------------------------------------------------------------- 1 | GenericZebulonOperator called 2 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/implicit_instantiation.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/instantiate_module_type.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/multiple_parameters.ref: -------------------------------------------------------------------------------- 1 | Q=6 2 | Z=-3 3 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/simple_generic_type.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/simple_pair_type.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/simple_variadics.ref: -------------------------------------------------------------------------------- 1 | K=4 2 | L=3 3 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/10.Generics/validation_success.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/11.Preprocessor/constant_evaluation.ref: -------------------------------------------------------------------------------- 1 | K=120 2 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/11.Preprocessor/setting_constants.ref: -------------------------------------------------------------------------------- 1 | A=0 2 | B=26 3 | C=27 4 | X=1 5 | Y=2 6 | Z=3 7 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/12.Library/hello_world.ref: -------------------------------------------------------------------------------- 1 | Hello World 2 | One=1 Two=2 and K=17 3 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/12.Library/hello_world_short.ref: -------------------------------------------------------------------------------- 1 | Hello World 2 | One=1 Two=2 and K=17 3 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/12.Library/instantiation_of_complex_by_name.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/12.Library/julia.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/12.Library/julia.ref -------------------------------------------------------------------------------- /xl2/stage2/TESTS/12.Library/julia.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/12.Library/julia.xl -------------------------------------------------------------------------------- /xl2/stage2/TESTS/12.Library/range.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xl2/stage2/TESTS/12.Library/range.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/12.Library/range.xl -------------------------------------------------------------------------------- /xl2/stage2/TESTS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/Makefile -------------------------------------------------------------------------------- /xl2/stage2/TESTS/alltests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/alltests -------------------------------------------------------------------------------- /xl2/stage2/TESTS/alltests.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/alltests.awk -------------------------------------------------------------------------------- /xl2/stage2/TESTS/alltests_C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/alltests_C -------------------------------------------------------------------------------- /xl2/stage2/TESTS/alltests_Java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/alltests_Java -------------------------------------------------------------------------------- /xl2/stage2/TESTS/alltests_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/alltests_default -------------------------------------------------------------------------------- /xl2/stage2/TESTS/baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/TESTS/baseline.txt -------------------------------------------------------------------------------- /xl2/stage2/compiler.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/compiler.xl -------------------------------------------------------------------------------- /xl2/stage2/library/runtime/C/C.syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/runtime/C/C.syntax -------------------------------------------------------------------------------- /xl2/stage2/library/runtime/C/xl.syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/runtime/C/xl.syntax -------------------------------------------------------------------------------- /xl2/stage2/library/runtime/C/xl_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/runtime/C/xl_lib.h -------------------------------------------------------------------------------- /xl2/stage2/library/runtime/default: -------------------------------------------------------------------------------- 1 | C -------------------------------------------------------------------------------- /xl2/stage2/library/xl.array.basic.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.array.basic.xs -------------------------------------------------------------------------------- /xl2/stage2/library/xl.array.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.array.xs -------------------------------------------------------------------------------- /xl2/stage2/library/xl.math.complex.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.math.complex.xl -------------------------------------------------------------------------------- /xl2/stage2/library/xl.math.complex.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.math.complex.xs -------------------------------------------------------------------------------- /xl2/stage2/library/xl.math.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.math.xs -------------------------------------------------------------------------------- /xl2/stage2/library/xl.pointer.heap.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.pointer.heap.xs -------------------------------------------------------------------------------- /xl2/stage2/library/xl.pointer.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.pointer.xs -------------------------------------------------------------------------------- /xl2/stage2/library/xl.sized_reals.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.sized_reals.xs -------------------------------------------------------------------------------- /xl2/stage2/library/xl.text_io.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.text_io.xl -------------------------------------------------------------------------------- /xl2/stage2/library/xl.text_io.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.text_io.xs -------------------------------------------------------------------------------- /xl2/stage2/library/xl.ui.console.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.ui.console.xl -------------------------------------------------------------------------------- /xl2/stage2/library/xl.ui.console.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.ui.console.xs -------------------------------------------------------------------------------- /xl2/stage2/library/xl.ui.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.ui.xs -------------------------------------------------------------------------------- /xl2/stage2/library/xl.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/library/xl.xs -------------------------------------------------------------------------------- /xl2/stage2/make.msvc71.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/make.msvc71.bat -------------------------------------------------------------------------------- /xl2/stage2/xl.bytecode.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.bytecode.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.bytecode.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.bytecode.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.codegenerator.machine.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.codegenerator.machine.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.codegenerator.machine.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.codegenerator.machine.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.codegenerator.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.codegenerator.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.codegenerator.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.codegenerator.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.constants.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.constants.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.constants.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.constants.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.errors.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.errors.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.errors.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.errors.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.optimizer.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.optimizer.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.optimizer.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.optimizer.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.parser.tree.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.parser.tree.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.parser.tree.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.parser.tree.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.parser.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.parser.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.parser.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.parser.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.common.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.common.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.common.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.common.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.constantfold.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.constantfold.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.define.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.define.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.ifdefined.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.ifdefined.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.ifp.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.ifp.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.include.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.include.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.junk.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.junk.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.listing.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.listing.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.transforms.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.transforms.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.plugin.xl2c.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.plugin.xl2c.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.renderer.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.renderer.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.renderer.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.renderer.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.scanner.position.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.scanner.position.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.scanner.position.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.scanner.position.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.scanner.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.scanner.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.scanner.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.scanner.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.functions.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.functions.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.functions.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.functions.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.generics.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.generics.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.generics.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.generics.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.iterators.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.iterators.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.iterators.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.iterators.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.macros.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.macros.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.macros.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.macros.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.modules.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.modules.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.modules.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.modules.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.overload.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.overload.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.overload.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.overload.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.pragmas.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.pragmas.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.types.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.types.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.types.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.types.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.semantics.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.semantics.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.symbols.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.symbols.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.symbols.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.symbols.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.textio.encoding.ascii.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.textio.encoding.ascii.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.textio.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.textio.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.translator.xl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.translator.xl -------------------------------------------------------------------------------- /xl2/stage2/xl.translator.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.translator.xs -------------------------------------------------------------------------------- /xl2/stage2/xl.ui.console.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/stage2/xl.ui.console.xs -------------------------------------------------------------------------------- /xl2/www/0406.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0406.txt -------------------------------------------------------------------------------- /xl2/www/040626.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040626.txt -------------------------------------------------------------------------------- /xl2/www/0407.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0407.txt -------------------------------------------------------------------------------- /xl2/www/040708.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040708.txt -------------------------------------------------------------------------------- /xl2/www/040714.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040714.txt -------------------------------------------------------------------------------- /xl2/www/040716.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040716.txt -------------------------------------------------------------------------------- /xl2/www/040720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040720.txt -------------------------------------------------------------------------------- /xl2/www/040725.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040725.txt -------------------------------------------------------------------------------- /xl2/www/040726.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040726.txt -------------------------------------------------------------------------------- /xl2/www/0409.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0409.txt -------------------------------------------------------------------------------- /xl2/www/040904.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040904.txt -------------------------------------------------------------------------------- /xl2/www/040909.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040909.txt -------------------------------------------------------------------------------- /xl2/www/040911.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040911.txt -------------------------------------------------------------------------------- /xl2/www/040919.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040919.txt -------------------------------------------------------------------------------- /xl2/www/040925.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040925.txt -------------------------------------------------------------------------------- /xl2/www/040929.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/040929.txt -------------------------------------------------------------------------------- /xl2/www/0410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0410.txt -------------------------------------------------------------------------------- /xl2/www/041002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041002.txt -------------------------------------------------------------------------------- /xl2/www/041003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041003.txt -------------------------------------------------------------------------------- /xl2/www/041004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041004.txt -------------------------------------------------------------------------------- /xl2/www/041006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041006.txt -------------------------------------------------------------------------------- /xl2/www/041007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041007.txt -------------------------------------------------------------------------------- /xl2/www/041009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041009.txt -------------------------------------------------------------------------------- /xl2/www/041012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041012.txt -------------------------------------------------------------------------------- /xl2/www/041017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041017.txt -------------------------------------------------------------------------------- /xl2/www/041018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041018.txt -------------------------------------------------------------------------------- /xl2/www/0411.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0411.txt -------------------------------------------------------------------------------- /xl2/www/041115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041115.txt -------------------------------------------------------------------------------- /xl2/www/041118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041118.txt -------------------------------------------------------------------------------- /xl2/www/041123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/041123.txt -------------------------------------------------------------------------------- /xl2/www/0511.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0511.txt -------------------------------------------------------------------------------- /xl2/www/051105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/051105.txt -------------------------------------------------------------------------------- /xl2/www/051109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/051109.txt -------------------------------------------------------------------------------- /xl2/www/0602.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0602.txt -------------------------------------------------------------------------------- /xl2/www/060204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060204.txt -------------------------------------------------------------------------------- /xl2/www/060211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060211.txt -------------------------------------------------------------------------------- /xl2/www/060212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060212.txt -------------------------------------------------------------------------------- /xl2/www/060213.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060213.txt -------------------------------------------------------------------------------- /xl2/www/060221.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060221.txt -------------------------------------------------------------------------------- /xl2/www/0604.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0604.txt -------------------------------------------------------------------------------- /xl2/www/060409.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060409.txt -------------------------------------------------------------------------------- /xl2/www/060410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060410.txt -------------------------------------------------------------------------------- /xl2/www/060411.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060411.txt -------------------------------------------------------------------------------- /xl2/www/060412.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060412.txt -------------------------------------------------------------------------------- /xl2/www/060413.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060413.txt -------------------------------------------------------------------------------- /xl2/www/060414.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060414.txt -------------------------------------------------------------------------------- /xl2/www/060415.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060415.txt -------------------------------------------------------------------------------- /xl2/www/060417.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060417.txt -------------------------------------------------------------------------------- /xl2/www/060419.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060419.txt -------------------------------------------------------------------------------- /xl2/www/060420.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060420.txt -------------------------------------------------------------------------------- /xl2/www/060421.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060421.txt -------------------------------------------------------------------------------- /xl2/www/060427.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060427.txt -------------------------------------------------------------------------------- /xl2/www/0605.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0605.txt -------------------------------------------------------------------------------- /xl2/www/060501.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060501.txt -------------------------------------------------------------------------------- /xl2/www/0606.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0606.txt -------------------------------------------------------------------------------- /xl2/www/060601.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060601.txt -------------------------------------------------------------------------------- /xl2/www/060610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060610.txt -------------------------------------------------------------------------------- /xl2/www/060611.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060611.txt -------------------------------------------------------------------------------- /xl2/www/060612.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060612.txt -------------------------------------------------------------------------------- /xl2/www/060613.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060613.txt -------------------------------------------------------------------------------- /xl2/www/060616.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060616.txt -------------------------------------------------------------------------------- /xl2/www/060617.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060617.txt -------------------------------------------------------------------------------- /xl2/www/060619.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060619.txt -------------------------------------------------------------------------------- /xl2/www/060620.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060620.txt -------------------------------------------------------------------------------- /xl2/www/060621.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/060621.txt -------------------------------------------------------------------------------- /xl2/www/0703.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0703.txt -------------------------------------------------------------------------------- /xl2/www/070320.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/070320.txt -------------------------------------------------------------------------------- /xl2/www/0705.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0705.txt -------------------------------------------------------------------------------- /xl2/www/070502.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/070502.txt -------------------------------------------------------------------------------- /xl2/www/0706.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0706.txt -------------------------------------------------------------------------------- /xl2/www/070622.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/070622.txt -------------------------------------------------------------------------------- /xl2/www/070628.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/070628.txt -------------------------------------------------------------------------------- /xl2/www/0707.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0707.txt -------------------------------------------------------------------------------- /xl2/www/070706.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/070706.txt -------------------------------------------------------------------------------- /xl2/www/070715.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/070715.txt -------------------------------------------------------------------------------- /xl2/www/070718.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/070718.txt -------------------------------------------------------------------------------- /xl2/www/070725.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/070725.txt -------------------------------------------------------------------------------- /xl2/www/0711.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0711.txt -------------------------------------------------------------------------------- /xl2/www/071110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/071110.txt -------------------------------------------------------------------------------- /xl2/www/071117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/071117.txt -------------------------------------------------------------------------------- /xl2/www/0804.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0804.txt -------------------------------------------------------------------------------- /xl2/www/080408.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/080408.txt -------------------------------------------------------------------------------- /xl2/www/0807.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0807.txt -------------------------------------------------------------------------------- /xl2/www/080722.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/080722.txt -------------------------------------------------------------------------------- /xl2/www/080726.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/080726.txt -------------------------------------------------------------------------------- /xl2/www/0809.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0809.txt -------------------------------------------------------------------------------- /xl2/www/080926.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/080926.txt -------------------------------------------------------------------------------- /xl2/www/0810.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/0810.txt -------------------------------------------------------------------------------- /xl2/www/081013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/081013.txt -------------------------------------------------------------------------------- /xl2/www/081014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/081014.txt -------------------------------------------------------------------------------- /xl2/www/081031.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/081031.txt -------------------------------------------------------------------------------- /xl2/www/concept/MooreFeast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/MooreFeast.jpg -------------------------------------------------------------------------------- /xl2/www/concept/MooreLinux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/MooreLinux.jpg -------------------------------------------------------------------------------- /xl2/www/concept/Paradigms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/Paradigms.jpg -------------------------------------------------------------------------------- /xl2/www/concept/Paradigms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/Paradigms.png -------------------------------------------------------------------------------- /xl2/www/concept/XL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/XL.txt -------------------------------------------------------------------------------- /xl2/www/concept/anything.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/anything.txt -------------------------------------------------------------------------------- /xl2/www/concept/bandwidth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/bandwidth.txt -------------------------------------------------------------------------------- /xl2/www/concept/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/code.txt -------------------------------------------------------------------------------- /xl2/www/concept/complexity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/complexity.txt -------------------------------------------------------------------------------- /xl2/www/concept/concept-cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/concept-cast.txt -------------------------------------------------------------------------------- /xl2/www/concept/concept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/concept.txt -------------------------------------------------------------------------------- /xl2/www/concept/cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/cp.txt -------------------------------------------------------------------------------- /xl2/www/concept/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/data.txt -------------------------------------------------------------------------------- /xl2/www/concept/diverge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/diverge.txt -------------------------------------------------------------------------------- /xl2/www/concept/dsl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/dsl.txt -------------------------------------------------------------------------------- /xl2/www/concept/expred.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/expred.txt -------------------------------------------------------------------------------- /xl2/www/concept/extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/extension.txt -------------------------------------------------------------------------------- /xl2/www/concept/generic-validation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/generic-validation.txt -------------------------------------------------------------------------------- /xl2/www/concept/generics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/generics.txt -------------------------------------------------------------------------------- /xl2/www/concept/language_limits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/language_limits.txt -------------------------------------------------------------------------------- /xl2/www/concept/metrics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/metrics.txt -------------------------------------------------------------------------------- /xl2/www/concept/moore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/moore.txt -------------------------------------------------------------------------------- /xl2/www/concept/objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/objects.txt -------------------------------------------------------------------------------- /xl2/www/concept/operators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/operators.txt -------------------------------------------------------------------------------- /xl2/www/concept/perf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/perf.txt -------------------------------------------------------------------------------- /xl2/www/concept/pragma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/pragma.txt -------------------------------------------------------------------------------- /xl2/www/concept/problem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/problem.txt -------------------------------------------------------------------------------- /xl2/www/concept/process.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/process.txt -------------------------------------------------------------------------------- /xl2/www/concept/representations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/representations.txt -------------------------------------------------------------------------------- /xl2/www/concept/script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/script.txt -------------------------------------------------------------------------------- /xl2/www/concept/semantics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/semantics.txt -------------------------------------------------------------------------------- /xl2/www/concept/semnoise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/semnoise.txt -------------------------------------------------------------------------------- /xl2/www/concept/signoise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/signoise.txt -------------------------------------------------------------------------------- /xl2/www/concept/synnoise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/synnoise.txt -------------------------------------------------------------------------------- /xl2/www/concept/syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/syntax.txt -------------------------------------------------------------------------------- /xl2/www/concept/top.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/top.txt -------------------------------------------------------------------------------- /xl2/www/concept/toplevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/toplevel.txt -------------------------------------------------------------------------------- /xl2/www/concept/truegen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/truegen.txt -------------------------------------------------------------------------------- /xl2/www/concept/variadics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/variadics.txt -------------------------------------------------------------------------------- /xl2/www/concept/xl012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/xl012.txt -------------------------------------------------------------------------------- /xl2/www/concept/xroma-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/concept/xroma-dim.png -------------------------------------------------------------------------------- /xl2/www/content-template.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/content-template.tmpl -------------------------------------------------------------------------------- /xl2/www/day-template.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/day-template.tmpl -------------------------------------------------------------------------------- /xl2/www/examples/average.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/average.txt -------------------------------------------------------------------------------- /xl2/www/examples/complex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/complex.txt -------------------------------------------------------------------------------- /xl2/www/examples/decl.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /xl2/www/examples/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/diff.txt -------------------------------------------------------------------------------- /xl2/www/examples/factorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/factorial.txt -------------------------------------------------------------------------------- /xl2/www/examples/function.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/examples/generic.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/examples/gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/gui.txt -------------------------------------------------------------------------------- /xl2/www/examples/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/hello.txt -------------------------------------------------------------------------------- /xl2/www/examples/inout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/inout.txt -------------------------------------------------------------------------------- /xl2/www/examples/maximum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/maximum.txt -------------------------------------------------------------------------------- /xl2/www/examples/numbers.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/examples/object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/object.txt -------------------------------------------------------------------------------- /xl2/www/examples/operators.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/examples/prolog.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/examples/quote.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/examples/statements.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/examples/string.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/examples/tasking.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/examples/text.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Example of long text 4 | -------------------------------------------------------------------------------- /xl2/www/examples/top.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/top.txt -------------------------------------------------------------------------------- /xl2/www/examples/translate.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/examples/writeln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/writeln.txt -------------------------------------------------------------------------------- /xl2/www/examples/written.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/written.txt -------------------------------------------------------------------------------- /xl2/www/examples/xroma-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/examples/xroma-dim.png -------------------------------------------------------------------------------- /xl2/www/inside/algorithms.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/binaryio.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/bootstrap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/bootstrap.txt -------------------------------------------------------------------------------- /xl2/www/inside/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/build.txt -------------------------------------------------------------------------------- /xl2/www/inside/bytecode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/bytecode.txt -------------------------------------------------------------------------------- /xl2/www/inside/containers.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/declarations.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/default.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/errors.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/exceptions.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/expred.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/functions.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/generics.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/library.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/lookup.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/math.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/object_model.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/objects.txt -------------------------------------------------------------------------------- /xl2/www/inside/operators.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/overload.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/parser.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/plugins.txt -------------------------------------------------------------------------------- /xl2/www/inside/pragma.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/scanner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/scanner.txt -------------------------------------------------------------------------------- /xl2/www/inside/scope_data.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/statements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/statements.txt -------------------------------------------------------------------------------- /xl2/www/inside/status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/status.txt -------------------------------------------------------------------------------- /xl2/www/inside/symbols.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/tests.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/textio.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/top.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/top.txt -------------------------------------------------------------------------------- /xl2/www/inside/translation.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/tree.txt -------------------------------------------------------------------------------- /xl2/www/inside/types.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/variadics.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/vasm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/vasm.txt -------------------------------------------------------------------------------- /xl2/www/inside/vm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/vm.txt -------------------------------------------------------------------------------- /xl2/www/inside/xl0.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xl2/www/inside/xroma-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/inside/xroma-dim.png -------------------------------------------------------------------------------- /xl2/www/page-template.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/page-template.tmpl -------------------------------------------------------------------------------- /xl2/www/shortcuts.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/shortcuts.el -------------------------------------------------------------------------------- /xl2/www/side-links.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/side-links.inc -------------------------------------------------------------------------------- /xl2/www/story-template.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/story-template.tmpl -------------------------------------------------------------------------------- /xl2/www/weblog.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/weblog.ini -------------------------------------------------------------------------------- /xl2/www/xroma-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/www/xroma-dim.png -------------------------------------------------------------------------------- /xl2/xl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/xl.el -------------------------------------------------------------------------------- /xl2/xl2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/xl2.sln -------------------------------------------------------------------------------- /xl2/xl2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c3d/xl/HEAD/xl2/xl2.vcproj --------------------------------------------------------------------------------