├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── LICENSE ├── README.md ├── agglib.joy ├── fib.joy ├── globals.h ├── inilib.joy ├── interp.c ├── joy.vim ├── main.c ├── makefile ├── scan.c ├── test2 ├── __dump.joy ├── __latex_manual.joy ├── __memoryindex.joy ├── __memorymax.joy ├── __settracegc.joy ├── __symtabindex.joy ├── __symtabmax.joy ├── _help.joy ├── abort.joy ├── abs.joy ├── add.joy ├── all.joy ├── and.joy ├── app1.joy ├── app11.joy ├── app12.joy ├── app2.joy ├── app3.joy ├── app4.joy ├── at.joy ├── autoput.joy ├── binary.joy ├── binrec.joy ├── body.joy ├── branch.joy ├── char.joy ├── choice.joy ├── cleave.joy ├── clock.joy ├── compare.joy ├── concat.joy ├── cond.joy ├── condlinrec.joy ├── cons.joy ├── construct.joy ├── conts.joy ├── dip.joy ├── divide.joy ├── drop.joy ├── dup.joy ├── dupd.joy ├── echo.joy ├── eql.joy ├── equal.joy ├── false.joy ├── filter.joy ├── first.joy ├── fold.joy ├── gc.joy ├── genrec.joy ├── geql.joy ├── get.joy ├── greater.joy ├── has.joy ├── help.joy ├── helpdetail.joy ├── i.joy ├── id.joy ├── ifchar.joy ├── ifinteger.joy ├── iflist.joy ├── iflogical.joy ├── ifset.joy ├── ifstring.joy ├── ifte.joy ├── in.joy ├── include.joy ├── infra.joy ├── integer.joy ├── leaf.joy ├── leql.joy ├── less.joy ├── linrec.joy ├── list.joy ├── logical.joy ├── manual.joy ├── map.joy ├── max.joy ├── maxint.joy ├── min.joy ├── mul.joy ├── name.joy ├── neql.joy ├── not.joy ├── null.joy ├── nullary.joy ├── of.joy ├── opcase.joy ├── or.joy ├── pop.joy ├── popd.joy ├── pred.joy ├── primrec.joy ├── put.joy ├── putch.joy ├── quit.joy ├── rem.joy ├── rest.joy ├── rolldown.joy ├── rolldownd.joy ├── rollup.joy ├── rollupd.joy ├── rotate.joy ├── rotated.joy ├── set.joy ├── setautoput.joy ├── setecho.joy ├── setsize.joy ├── sign.joy ├── size.joy ├── small.joy ├── some.joy ├── split.joy ├── stack.joy ├── step.joy ├── string.joy ├── sub.joy ├── succ.joy ├── swap.joy ├── swapd.joy ├── swons.joy ├── system.joy ├── tailrec.joy ├── take.joy ├── ternary.joy ├── times.joy ├── treegenrec.joy ├── treerec.joy ├── treestep.joy ├── true.joy ├── unary.joy ├── uncons.joy ├── unstack.joy ├── unswons.joy ├── user.joy ├── while.joy ├── x.joy └── xor.joy ├── usrlib.joy └── utils.c /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.tar 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/README.md -------------------------------------------------------------------------------- /agglib.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/agglib.joy -------------------------------------------------------------------------------- /fib.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/fib.joy -------------------------------------------------------------------------------- /globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/globals.h -------------------------------------------------------------------------------- /inilib.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/inilib.joy -------------------------------------------------------------------------------- /interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/interp.c -------------------------------------------------------------------------------- /joy.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/joy.vim -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/makefile -------------------------------------------------------------------------------- /scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/scan.c -------------------------------------------------------------------------------- /test2/__dump.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/__dump.joy -------------------------------------------------------------------------------- /test2/__latex_manual.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/__latex_manual.joy -------------------------------------------------------------------------------- /test2/__memoryindex.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/__memoryindex.joy -------------------------------------------------------------------------------- /test2/__memorymax.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/__memorymax.joy -------------------------------------------------------------------------------- /test2/__settracegc.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/__settracegc.joy -------------------------------------------------------------------------------- /test2/__symtabindex.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/__symtabindex.joy -------------------------------------------------------------------------------- /test2/__symtabmax.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/__symtabmax.joy -------------------------------------------------------------------------------- /test2/_help.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/_help.joy -------------------------------------------------------------------------------- /test2/abort.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/abort.joy -------------------------------------------------------------------------------- /test2/abs.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/abs.joy -------------------------------------------------------------------------------- /test2/add.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/add.joy -------------------------------------------------------------------------------- /test2/all.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/all.joy -------------------------------------------------------------------------------- /test2/and.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/and.joy -------------------------------------------------------------------------------- /test2/app1.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/app1.joy -------------------------------------------------------------------------------- /test2/app11.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/app11.joy -------------------------------------------------------------------------------- /test2/app12.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/app12.joy -------------------------------------------------------------------------------- /test2/app2.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/app2.joy -------------------------------------------------------------------------------- /test2/app3.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/app3.joy -------------------------------------------------------------------------------- /test2/app4.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/app4.joy -------------------------------------------------------------------------------- /test2/at.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/at.joy -------------------------------------------------------------------------------- /test2/autoput.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/autoput.joy -------------------------------------------------------------------------------- /test2/binary.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/binary.joy -------------------------------------------------------------------------------- /test2/binrec.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/binrec.joy -------------------------------------------------------------------------------- /test2/body.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/body.joy -------------------------------------------------------------------------------- /test2/branch.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/branch.joy -------------------------------------------------------------------------------- /test2/char.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/char.joy -------------------------------------------------------------------------------- /test2/choice.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/choice.joy -------------------------------------------------------------------------------- /test2/cleave.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/cleave.joy -------------------------------------------------------------------------------- /test2/clock.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/clock.joy -------------------------------------------------------------------------------- /test2/compare.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/compare.joy -------------------------------------------------------------------------------- /test2/concat.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/concat.joy -------------------------------------------------------------------------------- /test2/cond.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/cond.joy -------------------------------------------------------------------------------- /test2/condlinrec.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/condlinrec.joy -------------------------------------------------------------------------------- /test2/cons.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/cons.joy -------------------------------------------------------------------------------- /test2/construct.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/construct.joy -------------------------------------------------------------------------------- /test2/conts.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/conts.joy -------------------------------------------------------------------------------- /test2/dip.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/dip.joy -------------------------------------------------------------------------------- /test2/divide.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/divide.joy -------------------------------------------------------------------------------- /test2/drop.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/drop.joy -------------------------------------------------------------------------------- /test2/dup.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/dup.joy -------------------------------------------------------------------------------- /test2/dupd.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/dupd.joy -------------------------------------------------------------------------------- /test2/echo.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/echo.joy -------------------------------------------------------------------------------- /test2/eql.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/eql.joy -------------------------------------------------------------------------------- /test2/equal.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/equal.joy -------------------------------------------------------------------------------- /test2/false.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/false.joy -------------------------------------------------------------------------------- /test2/filter.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/filter.joy -------------------------------------------------------------------------------- /test2/first.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/first.joy -------------------------------------------------------------------------------- /test2/fold.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/fold.joy -------------------------------------------------------------------------------- /test2/gc.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/gc.joy -------------------------------------------------------------------------------- /test2/genrec.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/genrec.joy -------------------------------------------------------------------------------- /test2/geql.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/geql.joy -------------------------------------------------------------------------------- /test2/get.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/get.joy -------------------------------------------------------------------------------- /test2/greater.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/greater.joy -------------------------------------------------------------------------------- /test2/has.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/has.joy -------------------------------------------------------------------------------- /test2/help.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/help.joy -------------------------------------------------------------------------------- /test2/helpdetail.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/helpdetail.joy -------------------------------------------------------------------------------- /test2/i.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/i.joy -------------------------------------------------------------------------------- /test2/id.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/id.joy -------------------------------------------------------------------------------- /test2/ifchar.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/ifchar.joy -------------------------------------------------------------------------------- /test2/ifinteger.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/ifinteger.joy -------------------------------------------------------------------------------- /test2/iflist.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/iflist.joy -------------------------------------------------------------------------------- /test2/iflogical.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/iflogical.joy -------------------------------------------------------------------------------- /test2/ifset.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/ifset.joy -------------------------------------------------------------------------------- /test2/ifstring.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/ifstring.joy -------------------------------------------------------------------------------- /test2/ifte.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/ifte.joy -------------------------------------------------------------------------------- /test2/in.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/in.joy -------------------------------------------------------------------------------- /test2/include.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/include.joy -------------------------------------------------------------------------------- /test2/infra.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/infra.joy -------------------------------------------------------------------------------- /test2/integer.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/integer.joy -------------------------------------------------------------------------------- /test2/leaf.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/leaf.joy -------------------------------------------------------------------------------- /test2/leql.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/leql.joy -------------------------------------------------------------------------------- /test2/less.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/less.joy -------------------------------------------------------------------------------- /test2/linrec.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/linrec.joy -------------------------------------------------------------------------------- /test2/list.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/list.joy -------------------------------------------------------------------------------- /test2/logical.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/logical.joy -------------------------------------------------------------------------------- /test2/manual.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/manual.joy -------------------------------------------------------------------------------- /test2/map.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/map.joy -------------------------------------------------------------------------------- /test2/max.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/max.joy -------------------------------------------------------------------------------- /test2/maxint.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/maxint.joy -------------------------------------------------------------------------------- /test2/min.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/min.joy -------------------------------------------------------------------------------- /test2/mul.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/mul.joy -------------------------------------------------------------------------------- /test2/name.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/name.joy -------------------------------------------------------------------------------- /test2/neql.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/neql.joy -------------------------------------------------------------------------------- /test2/not.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/not.joy -------------------------------------------------------------------------------- /test2/null.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/null.joy -------------------------------------------------------------------------------- /test2/nullary.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/nullary.joy -------------------------------------------------------------------------------- /test2/of.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/of.joy -------------------------------------------------------------------------------- /test2/opcase.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/opcase.joy -------------------------------------------------------------------------------- /test2/or.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/or.joy -------------------------------------------------------------------------------- /test2/pop.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/pop.joy -------------------------------------------------------------------------------- /test2/popd.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/popd.joy -------------------------------------------------------------------------------- /test2/pred.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/pred.joy -------------------------------------------------------------------------------- /test2/primrec.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/primrec.joy -------------------------------------------------------------------------------- /test2/put.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/put.joy -------------------------------------------------------------------------------- /test2/putch.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/putch.joy -------------------------------------------------------------------------------- /test2/quit.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/quit.joy -------------------------------------------------------------------------------- /test2/rem.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/rem.joy -------------------------------------------------------------------------------- /test2/rest.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/rest.joy -------------------------------------------------------------------------------- /test2/rolldown.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/rolldown.joy -------------------------------------------------------------------------------- /test2/rolldownd.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/rolldownd.joy -------------------------------------------------------------------------------- /test2/rollup.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/rollup.joy -------------------------------------------------------------------------------- /test2/rollupd.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/rollupd.joy -------------------------------------------------------------------------------- /test2/rotate.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/rotate.joy -------------------------------------------------------------------------------- /test2/rotated.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/rotated.joy -------------------------------------------------------------------------------- /test2/set.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/set.joy -------------------------------------------------------------------------------- /test2/setautoput.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/setautoput.joy -------------------------------------------------------------------------------- /test2/setecho.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/setecho.joy -------------------------------------------------------------------------------- /test2/setsize.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/setsize.joy -------------------------------------------------------------------------------- /test2/sign.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/sign.joy -------------------------------------------------------------------------------- /test2/size.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/size.joy -------------------------------------------------------------------------------- /test2/small.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/small.joy -------------------------------------------------------------------------------- /test2/some.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/some.joy -------------------------------------------------------------------------------- /test2/split.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/split.joy -------------------------------------------------------------------------------- /test2/stack.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/stack.joy -------------------------------------------------------------------------------- /test2/step.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/step.joy -------------------------------------------------------------------------------- /test2/string.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/string.joy -------------------------------------------------------------------------------- /test2/sub.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/sub.joy -------------------------------------------------------------------------------- /test2/succ.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/succ.joy -------------------------------------------------------------------------------- /test2/swap.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/swap.joy -------------------------------------------------------------------------------- /test2/swapd.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/swapd.joy -------------------------------------------------------------------------------- /test2/swons.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/swons.joy -------------------------------------------------------------------------------- /test2/system.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/system.joy -------------------------------------------------------------------------------- /test2/tailrec.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/tailrec.joy -------------------------------------------------------------------------------- /test2/take.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/take.joy -------------------------------------------------------------------------------- /test2/ternary.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/ternary.joy -------------------------------------------------------------------------------- /test2/times.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/times.joy -------------------------------------------------------------------------------- /test2/treegenrec.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/treegenrec.joy -------------------------------------------------------------------------------- /test2/treerec.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/treerec.joy -------------------------------------------------------------------------------- /test2/treestep.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/treestep.joy -------------------------------------------------------------------------------- /test2/true.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/true.joy -------------------------------------------------------------------------------- /test2/unary.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/unary.joy -------------------------------------------------------------------------------- /test2/uncons.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/uncons.joy -------------------------------------------------------------------------------- /test2/unstack.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/unstack.joy -------------------------------------------------------------------------------- /test2/unswons.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/unswons.joy -------------------------------------------------------------------------------- /test2/user.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/user.joy -------------------------------------------------------------------------------- /test2/while.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/while.joy -------------------------------------------------------------------------------- /test2/x.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/x.joy -------------------------------------------------------------------------------- /test2/xor.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/test2/xor.joy -------------------------------------------------------------------------------- /usrlib.joy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/usrlib.joy -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wodan58/joy0/HEAD/utils.c --------------------------------------------------------------------------------