├── .github └── workflows │ └── main.yml ├── .gitignore ├── MIT_LICENSE.md ├── Makefile ├── README.md ├── doc ├── README_BIN ├── comp.md └── coverage.md ├── include └── apl.h ├── lib └── prelude.apl ├── src ├── .gitignore ├── Apl2Tail.sig ├── Apl2Tail.sml ├── Tail2Laila.sml ├── apl2tail.mlb ├── aplt.mlb ├── aplt.sml ├── flags.mlb ├── flags.sig ├── flags.sml ├── il │ ├── il.mlb │ ├── il.sml │ ├── ilutil.sig │ ├── ilutil.sml │ └── type.sig ├── laila │ ├── README.md │ ├── laila-flat-pull-arrays.sml │ ├── laila.mlb │ ├── laila.sig │ └── laila.sml ├── sml.pkg ├── statistics.mlb ├── statistics.sig ├── statistics.sml ├── tail │ ├── apl.mlb │ ├── apl.sig │ ├── apl.sml │ ├── tail.mlb │ ├── tail.sig │ ├── tail.sml │ ├── tail_exp.sig │ ├── tail_exp.sml │ ├── tail_optimize.sml │ ├── tail_type.sig │ └── tail_type.sml ├── util.mlb ├── util.sig └── util.sml └── tests ├── Makefile ├── a1.apl ├── a2.apl ├── abcd.apl ├── abcd.out.ok ├── anagram.apl ├── anagram.out.ok ├── athas.apl ├── athas.out.ok ├── bench.apl ├── bench1.apl ├── binaryops.apl ├── binaryops.out.ok ├── blacksch.apl ├── blackscholes.apl ├── blackscholes.out.ok ├── bool.apl ├── bool1.apl ├── boolean.apl ├── boolean.out.ok ├── c └── .gitignore ├── ceilfloormaxmin.apl ├── ceilfloormaxmin.out.ok ├── chars.apl ├── chars.out.ok ├── circ.apl ├── circ.out.ok ├── cmplx.apl ├── cmplx.out.ok ├── compose.apl ├── compose.out.ok ├── compress.apl ├── compress.out.ok ├── cons.apl ├── cons.out.ok ├── cos.apl ├── cos.out.ok ├── cosmin.apl ├── drop.apl ├── drop.out.ok ├── dtransp.apl ├── dtransp.out.ok ├── eacheaster.apl ├── eacheaster.out.ok ├── easter.apl ├── easter.out.ok ├── easter3000.apl ├── else.apl ├── else.out.ok ├── expd.apl ├── expd.out.ok ├── fib.apl ├── fib10.apl ├── fib10.out.ok ├── first.apl ├── first.out.ok ├── format.apl ├── format.out.ok ├── fun2.apl ├── fun2.out.ok ├── gradeupdown.apl ├── gradeupdown.out.ok ├── idx.apl ├── idx.out.ok ├── idxassign.apl ├── idxassign.out.ok ├── inner.apl ├── inner2.apl ├── inner3.apl ├── inner4.apl ├── innerLegrand5.3.apl ├── innerLegrand5.3.out.ok ├── innerproduct.apl ├── innerproduct.out.ok ├── inv.apl ├── inv.out.ok ├── inv3.apl ├── inv3.out.ok ├── life.apl ├── life.out.ok ├── life2.apl ├── ln.apl ├── ln.out.ok ├── mandel.apl ├── mandel.out.ok ├── mandelbrot.apl ├── mandelbrot.out.ok ├── mandelbrotInnerPower.apl ├── mandelbrotInnerPower2.apl ├── mandelbrotN.apl ├── mandelbrotN.out.ok ├── matmul.apl ├── matmul2.apl ├── mean.apl ├── mean.out.ok ├── mult.apl ├── mult.out.ok ├── mult0.apl ├── mult0.out.ok ├── now.apl ├── opr1.apl ├── opr1.out.ok ├── opr2.apl ├── opr2.out.ok ├── opr3.apl ├── opr3.out.ok ├── pi.apl ├── pi.out.ok ├── pi2.apl ├── pow.apl ├── pow.out.ok ├── powmat.apl ├── powmat.out.ok ├── powscl.apl ├── powscl.out.ok ├── powtup.apl ├── powtup.out.ok ├── pricer.apl ├── primes.apl ├── primes.out.ok ├── primes0.apl ├── primes0.out.ok ├── primes2.apl ├── quadassign.apl ├── quadassign.out.ok ├── rav.apl ├── rav.out.ok ├── readdoublevecfile.apl ├── readdoublevecfile.out.ok ├── readdoublevecfile.txt ├── readfile.apl ├── readfile.out.ok ├── readfile.txt ├── readintvecfile.apl ├── readintvecfile.out.ok ├── readintvecfile.txt ├── reduce.apl ├── reduce.out.ok ├── repl.apl ├── repl.out.ok ├── replicate.apl ├── replicate.out.ok ├── residue.apl ├── residue.out.ok ├── rot.apl ├── rot.out.ok ├── rotfirst.apl ├── rotfirst.out.ok ├── shape.apl ├── shape.out.ok ├── sierpinski.apl ├── sierpinski.out.ok ├── sierpinski0.apl ├── sierpinski0.out.ok ├── sign.apl ├── sign.out.ok ├── signal.apl ├── signal.out.ok ├── signal1.apl ├── signal2.apl ├── sin.apl ├── sin.out.ok ├── slashbar.apl ├── slashbar.out.ok ├── sort.apl ├── sort.out.ok ├── squad.apl ├── squad.out.ok ├── streak.apl ├── streak.out.ok ├── sum35.apl ├── sum35.out.ok ├── take.apl ├── take.out.ok ├── tally.apl ├── tally.out.ok ├── tax.apl ├── tax.out.ok ├── test.apl ├── test.out.ok ├── test1.apl ├── test1.out.ok ├── test10.apl ├── test10.out.ok ├── test11.apl ├── test11.out.ok ├── test12.apl ├── test12.out.ok ├── test13.apl ├── test13.out.ok ├── test14.apl ├── test14.out.ok ├── test15.apl ├── test15.out.ok ├── test16.apl ├── test16.out.ok ├── test17.apl ├── test18.apl ├── test19.apl ├── test19.out.ok ├── test2.apl ├── test2.out.ok ├── test20.apl ├── test21.apl ├── test21.out.ok ├── test22.apl ├── test23.apl ├── test24.apl ├── test25.apl ├── test26.apl ├── test27.apl ├── test28.apl ├── test28.out.ok ├── test29.apl ├── test3.apl ├── test3.out.ok ├── test30.apl ├── test4.apl ├── test4.out.ok ├── test5.apl ├── test5.out.ok ├── test6.apl ├── test6.out.ok ├── test7.apl ├── test7.out.ok ├── test8.apl ├── test9.apl ├── test9.out.ok ├── timespi.apl ├── timespi.out.ok ├── train.apl ├── train.out.ok ├── train0.apl ├── train0.out.ok ├── trainatop.apl ├── trainatop.out.ok ├── trains1.apl ├── trains1.out.ok ├── transpose.apl ├── transpose.out.ok ├── tup.apl ├── tup.out.ok ├── vec.apl ├── vec.out.ok ├── vowels.apl ├── vowels.out.ok ├── vrev.apl ├── vrev.out.ok ├── vrot.apl ├── vrot.out.ok ├── zfunc.apl └── zfunc.out.ok /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/.gitignore -------------------------------------------------------------------------------- /MIT_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/MIT_LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/README.md -------------------------------------------------------------------------------- /doc/README_BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/doc/README_BIN -------------------------------------------------------------------------------- /doc/comp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/doc/comp.md -------------------------------------------------------------------------------- /doc/coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/doc/coverage.md -------------------------------------------------------------------------------- /include/apl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/include/apl.h -------------------------------------------------------------------------------- /lib/prelude.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/lib/prelude.apl -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | version.sml 2 | lib 3 | *~ 4 | MLB -------------------------------------------------------------------------------- /src/Apl2Tail.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/Apl2Tail.sig -------------------------------------------------------------------------------- /src/Apl2Tail.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/Apl2Tail.sml -------------------------------------------------------------------------------- /src/Tail2Laila.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/Tail2Laila.sml -------------------------------------------------------------------------------- /src/apl2tail.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/apl2tail.mlb -------------------------------------------------------------------------------- /src/aplt.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/aplt.mlb -------------------------------------------------------------------------------- /src/aplt.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/aplt.sml -------------------------------------------------------------------------------- /src/flags.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/flags.mlb -------------------------------------------------------------------------------- /src/flags.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/flags.sig -------------------------------------------------------------------------------- /src/flags.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/flags.sml -------------------------------------------------------------------------------- /src/il/il.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/il/il.mlb -------------------------------------------------------------------------------- /src/il/il.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/il/il.sml -------------------------------------------------------------------------------- /src/il/ilutil.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/il/ilutil.sig -------------------------------------------------------------------------------- /src/il/ilutil.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/il/ilutil.sml -------------------------------------------------------------------------------- /src/il/type.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/il/type.sig -------------------------------------------------------------------------------- /src/laila/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/laila/README.md -------------------------------------------------------------------------------- /src/laila/laila-flat-pull-arrays.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/laila/laila-flat-pull-arrays.sml -------------------------------------------------------------------------------- /src/laila/laila.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/laila/laila.mlb -------------------------------------------------------------------------------- /src/laila/laila.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/laila/laila.sig -------------------------------------------------------------------------------- /src/laila/laila.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/laila/laila.sml -------------------------------------------------------------------------------- /src/sml.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/sml.pkg -------------------------------------------------------------------------------- /src/statistics.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/statistics.mlb -------------------------------------------------------------------------------- /src/statistics.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/statistics.sig -------------------------------------------------------------------------------- /src/statistics.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/statistics.sml -------------------------------------------------------------------------------- /src/tail/apl.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/apl.mlb -------------------------------------------------------------------------------- /src/tail/apl.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/apl.sig -------------------------------------------------------------------------------- /src/tail/apl.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/apl.sml -------------------------------------------------------------------------------- /src/tail/tail.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/tail.mlb -------------------------------------------------------------------------------- /src/tail/tail.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/tail.sig -------------------------------------------------------------------------------- /src/tail/tail.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/tail.sml -------------------------------------------------------------------------------- /src/tail/tail_exp.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/tail_exp.sig -------------------------------------------------------------------------------- /src/tail/tail_exp.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/tail_exp.sml -------------------------------------------------------------------------------- /src/tail/tail_optimize.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/tail_optimize.sml -------------------------------------------------------------------------------- /src/tail/tail_type.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/tail_type.sig -------------------------------------------------------------------------------- /src/tail/tail_type.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/tail/tail_type.sml -------------------------------------------------------------------------------- /src/util.mlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/util.mlb -------------------------------------------------------------------------------- /src/util.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/util.sig -------------------------------------------------------------------------------- /src/util.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/src/util.sml -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/a1.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/a1.apl -------------------------------------------------------------------------------- /tests/a2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/a2.apl -------------------------------------------------------------------------------- /tests/abcd.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/abcd.apl -------------------------------------------------------------------------------- /tests/abcd.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/abcd.out.ok -------------------------------------------------------------------------------- /tests/anagram.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/anagram.apl -------------------------------------------------------------------------------- /tests/anagram.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/anagram.out.ok -------------------------------------------------------------------------------- /tests/athas.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/athas.apl -------------------------------------------------------------------------------- /tests/athas.out.ok: -------------------------------------------------------------------------------- 1 | [](50.0) 2 | -------------------------------------------------------------------------------- /tests/bench.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/bench.apl -------------------------------------------------------------------------------- /tests/bench1.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/bench1.apl -------------------------------------------------------------------------------- /tests/binaryops.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/binaryops.apl -------------------------------------------------------------------------------- /tests/binaryops.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/binaryops.out.ok -------------------------------------------------------------------------------- /tests/blacksch.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/blacksch.apl -------------------------------------------------------------------------------- /tests/blackscholes.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/blackscholes.apl -------------------------------------------------------------------------------- /tests/blackscholes.out.ok: -------------------------------------------------------------------------------- 1 | [](5.34836535975) 2 | -------------------------------------------------------------------------------- /tests/bool.apl: -------------------------------------------------------------------------------- 1 | a ← 3 < 4 2 | -------------------------------------------------------------------------------- /tests/bool1.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/bool1.apl -------------------------------------------------------------------------------- /tests/boolean.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/boolean.apl -------------------------------------------------------------------------------- /tests/boolean.out.ok: -------------------------------------------------------------------------------- 1 | [](2.0) 2 | -------------------------------------------------------------------------------- /tests/c/.gitignore: -------------------------------------------------------------------------------- 1 | *.c -------------------------------------------------------------------------------- /tests/ceilfloormaxmin.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/ceilfloormaxmin.apl -------------------------------------------------------------------------------- /tests/ceilfloormaxmin.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/ceilfloormaxmin.out.ok -------------------------------------------------------------------------------- /tests/chars.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/chars.apl -------------------------------------------------------------------------------- /tests/chars.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/chars.out.ok -------------------------------------------------------------------------------- /tests/circ.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/circ.apl -------------------------------------------------------------------------------- /tests/circ.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/circ.out.ok -------------------------------------------------------------------------------- /tests/cmplx.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/cmplx.apl -------------------------------------------------------------------------------- /tests/cmplx.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/cmplx.out.ok -------------------------------------------------------------------------------- /tests/compose.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/compose.apl -------------------------------------------------------------------------------- /tests/compose.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/compose.out.ok -------------------------------------------------------------------------------- /tests/compress.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/compress.apl -------------------------------------------------------------------------------- /tests/compress.out.ok: -------------------------------------------------------------------------------- 1 | [](8.0) 2 | -------------------------------------------------------------------------------- /tests/cons.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/cons.apl -------------------------------------------------------------------------------- /tests/cons.out.ok: -------------------------------------------------------------------------------- 1 | [](31.0) 2 | -------------------------------------------------------------------------------- /tests/cos.apl: -------------------------------------------------------------------------------- 1 | 2○0 2 | -------------------------------------------------------------------------------- /tests/cos.out.ok: -------------------------------------------------------------------------------- 1 | [](1.0) 2 | -------------------------------------------------------------------------------- /tests/cosmin.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/cosmin.apl -------------------------------------------------------------------------------- /tests/drop.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/drop.apl -------------------------------------------------------------------------------- /tests/drop.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/drop.out.ok -------------------------------------------------------------------------------- /tests/dtransp.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/dtransp.apl -------------------------------------------------------------------------------- /tests/dtransp.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/dtransp.out.ok -------------------------------------------------------------------------------- /tests/eacheaster.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/eacheaster.apl -------------------------------------------------------------------------------- /tests/eacheaster.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/eacheaster.out.ok -------------------------------------------------------------------------------- /tests/easter.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/easter.apl -------------------------------------------------------------------------------- /tests/easter.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/easter.out.ok -------------------------------------------------------------------------------- /tests/easter3000.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/easter3000.apl -------------------------------------------------------------------------------- /tests/else.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/else.apl -------------------------------------------------------------------------------- /tests/else.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/else.out.ok -------------------------------------------------------------------------------- /tests/expd.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/expd.apl -------------------------------------------------------------------------------- /tests/expd.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/expd.out.ok -------------------------------------------------------------------------------- /tests/fib.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/fib.apl -------------------------------------------------------------------------------- /tests/fib10.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/fib10.apl -------------------------------------------------------------------------------- /tests/fib10.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/fib10.out.ok -------------------------------------------------------------------------------- /tests/first.apl: -------------------------------------------------------------------------------- 1 | 2 | ⊃ 1 2 -------------------------------------------------------------------------------- /tests/first.out.ok: -------------------------------------------------------------------------------- 1 | [](1.0) 2 | -------------------------------------------------------------------------------- /tests/format.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/format.apl -------------------------------------------------------------------------------- /tests/format.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/format.out.ok -------------------------------------------------------------------------------- /tests/fun2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/fun2.apl -------------------------------------------------------------------------------- /tests/fun2.out.ok: -------------------------------------------------------------------------------- 1 | [](2.0) 2 | -------------------------------------------------------------------------------- /tests/gradeupdown.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/gradeupdown.apl -------------------------------------------------------------------------------- /tests/gradeupdown.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/gradeupdown.out.ok -------------------------------------------------------------------------------- /tests/idx.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/idx.apl -------------------------------------------------------------------------------- /tests/idx.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/idx.out.ok -------------------------------------------------------------------------------- /tests/idxassign.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/idxassign.apl -------------------------------------------------------------------------------- /tests/idxassign.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/idxassign.out.ok -------------------------------------------------------------------------------- /tests/inner.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/inner.apl -------------------------------------------------------------------------------- /tests/inner2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/inner2.apl -------------------------------------------------------------------------------- /tests/inner3.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/inner3.apl -------------------------------------------------------------------------------- /tests/inner4.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/inner4.apl -------------------------------------------------------------------------------- /tests/innerLegrand5.3.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/innerLegrand5.3.apl -------------------------------------------------------------------------------- /tests/innerLegrand5.3.out.ok: -------------------------------------------------------------------------------- 1 | [](27190.4) 2 | -------------------------------------------------------------------------------- /tests/innerproduct.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/innerproduct.apl -------------------------------------------------------------------------------- /tests/innerproduct.out.ok: -------------------------------------------------------------------------------- 1 | [](4.31703601) 2 | -------------------------------------------------------------------------------- /tests/inv.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/inv.apl -------------------------------------------------------------------------------- /tests/inv.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/inv.out.ok -------------------------------------------------------------------------------- /tests/inv3.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/inv3.apl -------------------------------------------------------------------------------- /tests/inv3.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/inv3.out.ok -------------------------------------------------------------------------------- /tests/life.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/life.apl -------------------------------------------------------------------------------- /tests/life.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/life.out.ok -------------------------------------------------------------------------------- /tests/life2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/life2.apl -------------------------------------------------------------------------------- /tests/ln.apl: -------------------------------------------------------------------------------- 1 | ⍟⋆1 2 | -------------------------------------------------------------------------------- /tests/ln.out.ok: -------------------------------------------------------------------------------- 1 | [](1.0) 2 | -------------------------------------------------------------------------------- /tests/mandel.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mandel.apl -------------------------------------------------------------------------------- /tests/mandel.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mandel.out.ok -------------------------------------------------------------------------------- /tests/mandelbrot.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mandelbrot.apl -------------------------------------------------------------------------------- /tests/mandelbrot.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mandelbrot.out.ok -------------------------------------------------------------------------------- /tests/mandelbrotInnerPower.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mandelbrotInnerPower.apl -------------------------------------------------------------------------------- /tests/mandelbrotInnerPower2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mandelbrotInnerPower2.apl -------------------------------------------------------------------------------- /tests/mandelbrotN.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mandelbrotN.apl -------------------------------------------------------------------------------- /tests/mandelbrotN.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mandelbrotN.out.ok -------------------------------------------------------------------------------- /tests/matmul.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/matmul.apl -------------------------------------------------------------------------------- /tests/matmul2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/matmul2.apl -------------------------------------------------------------------------------- /tests/mean.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mean.apl -------------------------------------------------------------------------------- /tests/mean.out.ok: -------------------------------------------------------------------------------- 1 | [](2.5) 2 | -------------------------------------------------------------------------------- /tests/mult.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mult.apl -------------------------------------------------------------------------------- /tests/mult.out.ok: -------------------------------------------------------------------------------- 1 | [](3025.0) 2 | -------------------------------------------------------------------------------- /tests/mult0.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/mult0.apl -------------------------------------------------------------------------------- /tests/mult0.out.ok: -------------------------------------------------------------------------------- 1 | [](3025.0) 2 | -------------------------------------------------------------------------------- /tests/now.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/now.apl -------------------------------------------------------------------------------- /tests/opr1.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/opr1.apl -------------------------------------------------------------------------------- /tests/opr1.out.ok: -------------------------------------------------------------------------------- 1 | [](38.6) 2 | -------------------------------------------------------------------------------- /tests/opr2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/opr2.apl -------------------------------------------------------------------------------- /tests/opr2.out.ok: -------------------------------------------------------------------------------- 1 | [](39.44) 2 | -------------------------------------------------------------------------------- /tests/opr3.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/opr3.apl -------------------------------------------------------------------------------- /tests/opr3.out.ok: -------------------------------------------------------------------------------- 1 | [](-19.0) 2 | -------------------------------------------------------------------------------- /tests/pi.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/pi.apl -------------------------------------------------------------------------------- /tests/pi.out.ok: -------------------------------------------------------------------------------- 1 | [](1.0) 2 | -------------------------------------------------------------------------------- /tests/pi2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/pi2.apl -------------------------------------------------------------------------------- /tests/pow.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/pow.apl -------------------------------------------------------------------------------- /tests/pow.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/pow.out.ok -------------------------------------------------------------------------------- /tests/powmat.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/powmat.apl -------------------------------------------------------------------------------- /tests/powmat.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/powmat.out.ok -------------------------------------------------------------------------------- /tests/powscl.apl: -------------------------------------------------------------------------------- 1 | 2 | ⎕ ← ({ ⍵ + 1 }⍣3) 100 3 | 4 | 0 -------------------------------------------------------------------------------- /tests/powscl.out.ok: -------------------------------------------------------------------------------- 1 | [](103) 2 | [](0.0) 3 | -------------------------------------------------------------------------------- /tests/powtup.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/powtup.apl -------------------------------------------------------------------------------- /tests/powtup.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/powtup.out.ok -------------------------------------------------------------------------------- /tests/pricer.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/pricer.apl -------------------------------------------------------------------------------- /tests/primes.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/primes.apl -------------------------------------------------------------------------------- /tests/primes.out.ok: -------------------------------------------------------------------------------- 1 | [](1060.0) 2 | -------------------------------------------------------------------------------- /tests/primes0.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/primes0.apl -------------------------------------------------------------------------------- /tests/primes0.out.ok: -------------------------------------------------------------------------------- 1 | [](4.0) 2 | -------------------------------------------------------------------------------- /tests/primes2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/primes2.apl -------------------------------------------------------------------------------- /tests/quadassign.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/quadassign.apl -------------------------------------------------------------------------------- /tests/quadassign.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/quadassign.out.ok -------------------------------------------------------------------------------- /tests/rav.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/rav.apl -------------------------------------------------------------------------------- /tests/rav.out.ok: -------------------------------------------------------------------------------- 1 | [](1.0) 2 | -------------------------------------------------------------------------------- /tests/readdoublevecfile.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/readdoublevecfile.apl -------------------------------------------------------------------------------- /tests/readdoublevecfile.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/readdoublevecfile.out.ok -------------------------------------------------------------------------------- /tests/readdoublevecfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/readdoublevecfile.txt -------------------------------------------------------------------------------- /tests/readfile.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/readfile.apl -------------------------------------------------------------------------------- /tests/readfile.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/readfile.out.ok -------------------------------------------------------------------------------- /tests/readfile.txt: -------------------------------------------------------------------------------- 1 | This is the content 2 | of a text file (2 lines). 3 | -------------------------------------------------------------------------------- /tests/readintvecfile.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/readintvecfile.apl -------------------------------------------------------------------------------- /tests/readintvecfile.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/readintvecfile.out.ok -------------------------------------------------------------------------------- /tests/readintvecfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/readintvecfile.txt -------------------------------------------------------------------------------- /tests/reduce.apl: -------------------------------------------------------------------------------- 1 | 2 | a ← 10 30 ⍴ ⍳ 34 3 | ⌈ / +/ ⍉ a 4 | 5 | -------------------------------------------------------------------------------- /tests/reduce.out.ok: -------------------------------------------------------------------------------- 1 | [](202.0) 2 | -------------------------------------------------------------------------------- /tests/repl.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/repl.apl -------------------------------------------------------------------------------- /tests/repl.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/repl.out.ok -------------------------------------------------------------------------------- /tests/replicate.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/replicate.apl -------------------------------------------------------------------------------- /tests/replicate.out.ok: -------------------------------------------------------------------------------- 1 | [](30.0) 2 | -------------------------------------------------------------------------------- /tests/residue.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/residue.apl -------------------------------------------------------------------------------- /tests/residue.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/residue.out.ok -------------------------------------------------------------------------------- /tests/rot.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/rot.apl -------------------------------------------------------------------------------- /tests/rot.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/rot.out.ok -------------------------------------------------------------------------------- /tests/rotfirst.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/rotfirst.apl -------------------------------------------------------------------------------- /tests/rotfirst.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/rotfirst.out.ok -------------------------------------------------------------------------------- /tests/shape.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/shape.apl -------------------------------------------------------------------------------- /tests/shape.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/shape.out.ok -------------------------------------------------------------------------------- /tests/sierpinski.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/sierpinski.apl -------------------------------------------------------------------------------- /tests/sierpinski.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/sierpinski.out.ok -------------------------------------------------------------------------------- /tests/sierpinski0.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/sierpinski0.apl -------------------------------------------------------------------------------- /tests/sierpinski0.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/sierpinski0.out.ok -------------------------------------------------------------------------------- /tests/sign.apl: -------------------------------------------------------------------------------- 1 | ×10 2 | -------------------------------------------------------------------------------- /tests/sign.out.ok: -------------------------------------------------------------------------------- 1 | [](1.0) 2 | -------------------------------------------------------------------------------- /tests/signal.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/signal.apl -------------------------------------------------------------------------------- /tests/signal.out.ok: -------------------------------------------------------------------------------- 1 | [](258.557340366) 2 | -------------------------------------------------------------------------------- /tests/signal1.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/signal1.apl -------------------------------------------------------------------------------- /tests/signal2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/signal2.apl -------------------------------------------------------------------------------- /tests/sin.apl: -------------------------------------------------------------------------------- 1 | 1○0 2 | -------------------------------------------------------------------------------- /tests/sin.out.ok: -------------------------------------------------------------------------------- 1 | [](0.0) 2 | -------------------------------------------------------------------------------- /tests/slashbar.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/slashbar.apl -------------------------------------------------------------------------------- /tests/slashbar.out.ok: -------------------------------------------------------------------------------- 1 | [](405.0) 2 | -------------------------------------------------------------------------------- /tests/sort.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/sort.apl -------------------------------------------------------------------------------- /tests/sort.out.ok: -------------------------------------------------------------------------------- 1 | [](1.0) 2 | -------------------------------------------------------------------------------- /tests/squad.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/squad.apl -------------------------------------------------------------------------------- /tests/squad.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/squad.out.ok -------------------------------------------------------------------------------- /tests/streak.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/streak.apl -------------------------------------------------------------------------------- /tests/streak.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/streak.out.ok -------------------------------------------------------------------------------- /tests/sum35.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/sum35.apl -------------------------------------------------------------------------------- /tests/sum35.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/sum35.out.ok -------------------------------------------------------------------------------- /tests/take.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/take.apl -------------------------------------------------------------------------------- /tests/take.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/take.out.ok -------------------------------------------------------------------------------- /tests/tally.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/tally.apl -------------------------------------------------------------------------------- /tests/tally.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/tally.out.ok -------------------------------------------------------------------------------- /tests/tax.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/tax.apl -------------------------------------------------------------------------------- /tests/tax.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/tax.out.ok -------------------------------------------------------------------------------- /tests/test.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test.apl -------------------------------------------------------------------------------- /tests/test.out.ok: -------------------------------------------------------------------------------- 1 | [](615.0) 2 | -------------------------------------------------------------------------------- /tests/test1.apl: -------------------------------------------------------------------------------- 1 | a ← 1 2 3 2 | +/a -------------------------------------------------------------------------------- /tests/test1.out.ok: -------------------------------------------------------------------------------- 1 | [](6.0) 2 | -------------------------------------------------------------------------------- /tests/test10.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test10.apl -------------------------------------------------------------------------------- /tests/test10.out.ok: -------------------------------------------------------------------------------- 1 | [](82.8) 2 | -------------------------------------------------------------------------------- /tests/test11.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test11.apl -------------------------------------------------------------------------------- /tests/test11.out.ok: -------------------------------------------------------------------------------- 1 | [](55.8) 2 | -------------------------------------------------------------------------------- /tests/test12.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test12.apl -------------------------------------------------------------------------------- /tests/test12.out.ok: -------------------------------------------------------------------------------- 1 | [](21.0) 2 | -------------------------------------------------------------------------------- /tests/test13.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test13.apl -------------------------------------------------------------------------------- /tests/test13.out.ok: -------------------------------------------------------------------------------- 1 | [](65780.0) 2 | -------------------------------------------------------------------------------- /tests/test14.apl: -------------------------------------------------------------------------------- 1 | a ← 7 - 3 -------------------------------------------------------------------------------- /tests/test14.out.ok: -------------------------------------------------------------------------------- 1 | [](4.0) 2 | -------------------------------------------------------------------------------- /tests/test15.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test15.apl -------------------------------------------------------------------------------- /tests/test15.out.ok: -------------------------------------------------------------------------------- 1 | [](210.0) 2 | -------------------------------------------------------------------------------- /tests/test16.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test16.apl -------------------------------------------------------------------------------- /tests/test16.out.ok: -------------------------------------------------------------------------------- 1 | [](1934351.0) 2 | -------------------------------------------------------------------------------- /tests/test17.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test17.apl -------------------------------------------------------------------------------- /tests/test18.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test18.apl -------------------------------------------------------------------------------- /tests/test19.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test19.apl -------------------------------------------------------------------------------- /tests/test19.out.ok: -------------------------------------------------------------------------------- 1 | [](375.0) 2 | -------------------------------------------------------------------------------- /tests/test2.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test2.apl -------------------------------------------------------------------------------- /tests/test2.out.ok: -------------------------------------------------------------------------------- 1 | [](349.0) 2 | -------------------------------------------------------------------------------- /tests/test20.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test20.apl -------------------------------------------------------------------------------- /tests/test21.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test21.apl -------------------------------------------------------------------------------- /tests/test21.out.ok: -------------------------------------------------------------------------------- 1 | [](4090.0) 2 | -------------------------------------------------------------------------------- /tests/test22.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test22.apl -------------------------------------------------------------------------------- /tests/test23.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test23.apl -------------------------------------------------------------------------------- /tests/test24.apl: -------------------------------------------------------------------------------- 1 | a ← 4 3 2 | +/ a + 8 -------------------------------------------------------------------------------- /tests/test25.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test25.apl -------------------------------------------------------------------------------- /tests/test26.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test26.apl -------------------------------------------------------------------------------- /tests/test27.apl: -------------------------------------------------------------------------------- 1 | a ← ¯1 ↑ (12 2 3 4 5) 2 | 3 | +/a -------------------------------------------------------------------------------- /tests/test28.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test28.apl -------------------------------------------------------------------------------- /tests/test28.out.ok: -------------------------------------------------------------------------------- 1 | [](1934351.0) 2 | -------------------------------------------------------------------------------- /tests/test29.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test29.apl -------------------------------------------------------------------------------- /tests/test3.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test3.apl -------------------------------------------------------------------------------- /tests/test3.out.ok: -------------------------------------------------------------------------------- 1 | [](2320.0) 2 | -------------------------------------------------------------------------------- /tests/test30.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test30.apl -------------------------------------------------------------------------------- /tests/test4.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test4.apl -------------------------------------------------------------------------------- /tests/test4.out.ok: -------------------------------------------------------------------------------- 1 | [](6.0) 2 | -------------------------------------------------------------------------------- /tests/test5.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test5.apl -------------------------------------------------------------------------------- /tests/test5.out.ok: -------------------------------------------------------------------------------- 1 | [](479001643.0) 2 | -------------------------------------------------------------------------------- /tests/test6.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test6.apl -------------------------------------------------------------------------------- /tests/test6.out.ok: -------------------------------------------------------------------------------- 1 | [](15.0) 2 | -------------------------------------------------------------------------------- /tests/test7.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test7.apl -------------------------------------------------------------------------------- /tests/test7.out.ok: -------------------------------------------------------------------------------- 1 | [](9.0) 2 | -------------------------------------------------------------------------------- /tests/test8.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test8.apl -------------------------------------------------------------------------------- /tests/test9.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/test9.apl -------------------------------------------------------------------------------- /tests/test9.out.ok: -------------------------------------------------------------------------------- 1 | [](231.0) 2 | -------------------------------------------------------------------------------- /tests/timespi.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/timespi.apl -------------------------------------------------------------------------------- /tests/timespi.out.ok: -------------------------------------------------------------------------------- 1 | [](1.0) 2 | -------------------------------------------------------------------------------- /tests/train.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/train.apl -------------------------------------------------------------------------------- /tests/train.out.ok: -------------------------------------------------------------------------------- 1 | [](25.65) 2 | -------------------------------------------------------------------------------- /tests/train0.apl: -------------------------------------------------------------------------------- 1 | a ← (-,÷)5 2 | 3 | +/a -------------------------------------------------------------------------------- /tests/train0.out.ok: -------------------------------------------------------------------------------- 1 | [](-4.8) 2 | -------------------------------------------------------------------------------- /tests/trainatop.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/trainatop.apl -------------------------------------------------------------------------------- /tests/trainatop.out.ok: -------------------------------------------------------------------------------- 1 | 2 | 2 4 6 3 | 1 3 5 4 | 5 | [](1.75) 6 | -------------------------------------------------------------------------------- /tests/trains1.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/trains1.apl -------------------------------------------------------------------------------- /tests/trains1.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/trains1.out.ok -------------------------------------------------------------------------------- /tests/transpose.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/transpose.apl -------------------------------------------------------------------------------- /tests/transpose.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/transpose.out.ok -------------------------------------------------------------------------------- /tests/tup.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/tup.apl -------------------------------------------------------------------------------- /tests/tup.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/tup.out.ok -------------------------------------------------------------------------------- /tests/vec.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/vec.apl -------------------------------------------------------------------------------- /tests/vec.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/vec.out.ok -------------------------------------------------------------------------------- /tests/vowels.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/vowels.apl -------------------------------------------------------------------------------- /tests/vowels.out.ok: -------------------------------------------------------------------------------- 1 | [](4.0) 2 | -------------------------------------------------------------------------------- /tests/vrev.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/vrev.apl -------------------------------------------------------------------------------- /tests/vrev.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/vrev.out.ok -------------------------------------------------------------------------------- /tests/vrot.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/vrot.apl -------------------------------------------------------------------------------- /tests/vrot.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/vrot.out.ok -------------------------------------------------------------------------------- /tests/zfunc.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/zfunc.apl -------------------------------------------------------------------------------- /tests/zfunc.out.ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melsman/apltail/HEAD/tests/zfunc.out.ok --------------------------------------------------------------------------------