├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGES-ats2 ├── CHANGES-contrib ├── COPYING ├── COPYING-gpl-3.0.txt ├── COPYING-lgpl-2.1.txt ├── COPYING-lgpl-3.0.txt ├── INSTALL ├── Makefile_devl ├── NOTES ├── README ├── README.md ├── VERSION ├── appveyor.yml ├── appveyor ├── appveyor-2016-04-03.yml └── appveyor.yml ├── bin ├── .keeper ├── myatscc_env.sh.in ├── patscc_env.sh.in └── patsopt_env.sh.in ├── ccomp ├── atslib │ ├── Makefile │ ├── Makefile.atxt │ ├── Makefile.gen │ ├── lib │ │ └── .keeper │ ├── lib32 │ │ └── .keeper │ ├── lib64 │ │ └── .keeper │ └── output │ │ └── .keeper └── runtime │ ├── pats_ccomp_basics.h │ ├── pats_ccomp_config.h │ ├── pats_ccomp_exception.h │ ├── pats_ccomp_instrset.h │ ├── pats_ccomp_memalloc.h │ ├── pats_ccomp_memalloc_gcbdw.h │ ├── pats_ccomp_memalloc_libc.h │ ├── pats_ccomp_memalloc_user.h │ ├── pats_ccomp_memalloc_user2.h │ ├── pats_ccomp_memalloca.h │ ├── pats_ccomp_runtime.c │ ├── pats_ccomp_runtime2.dats │ ├── pats_ccomp_runtime2_dats.c │ ├── pats_ccomp_runtime_memalloc.c │ ├── pats_ccomp_runtime_trywith.c │ └── pats_ccomp_typedefs.h ├── codegen └── Makefile_atslib ├── config.h ├── contrib ├── ATS-extsolve-smt2 │ ├── ATS-extsolve │ ├── DATS │ │ ├── SOLVING │ │ │ ├── myheader.hats │ │ │ ├── patsolve_smt2_solving_ctx.dats │ │ │ ├── patsolve_smt2_solving_emit.dats │ │ │ ├── patsolve_smt2_solving_form.dats │ │ │ ├── patsolve_smt2_solving_interp.dats │ │ │ └── patsolve_smt2_solving_smtenv.dats │ │ ├── patsolve_smt2_commarg.dats │ │ ├── patsolve_smt2_main.dats │ │ ├── patsolve_smt2_mylib.dats │ │ └── patsolve_smt2_solving.dats │ ├── Makefile │ ├── README │ ├── SATS │ │ ├── patsolve_smt2_commarg.sats │ │ └── patsolve_smt2_solving.sats │ ├── TEST │ │ ├── Makefile │ │ ├── fact.dats │ │ ├── fact2.dats │ │ ├── quadratic.dats │ │ └── trigfuns.dats │ ├── bin │ │ └── .keeper │ └── npm │ │ ├── CATS │ │ ├── patsolve_cnstrnt_dats.c │ │ └── patsolve_parsing_dats.c │ │ ├── Makefile │ │ └── package.json ├── ATS-extsolve-z3 │ ├── ATS-extsolve │ ├── DATS │ │ ├── SOLVING │ │ │ ├── myheader.hats │ │ │ ├── patsolve_z3_solving_ctx.dats │ │ │ ├── patsolve_z3_solving_form.dats │ │ │ ├── patsolve_z3_solving_interp.dats │ │ │ ├── patsolve_z3_solving_smtenv.dats │ │ │ └── patsolve_z3_solving_sort.dats │ │ ├── patsolve_z3_commarg.dats │ │ ├── patsolve_z3_main.dats │ │ ├── patsolve_z3_mylib.dats │ │ └── patsolve_z3_solving.dats │ ├── Makefile │ ├── README │ ├── SATS │ │ ├── patsolve_z3_commarg.sats │ │ └── patsolve_z3_solving.sats │ ├── TEST │ │ ├── ConcurrentAltitudes-1.dats │ │ ├── ConcurrentAltitudes-2.dats │ │ ├── ConcurrentMedians.dats │ │ ├── Makefile │ │ ├── Makefile_test │ │ ├── Zoe-2016-09-11.dats │ │ ├── fact.dats │ │ ├── fact2.dats │ │ ├── fib.dats │ │ ├── fib2.dats │ │ ├── gfarray_insort.dats │ │ ├── gflist_insort.dats │ │ ├── palindrome.dats │ │ ├── quadratic.dats │ │ └── real_misc.dats │ ├── bin │ │ └── .keeper │ └── npm │ │ ├── CATS │ │ ├── patsolve_cnstrnt_dats.c │ │ └── patsolve_parsing_dats.c │ │ ├── Makefile │ │ └── package.json ├── ATS-extsolve │ ├── CATS │ │ └── .keeper │ ├── DATS │ │ ├── CNSTRNT │ │ │ ├── patsolve_cnstrnt_c3nstr.dats │ │ │ ├── patsolve_cnstrnt_h3ypo.dats │ │ │ ├── patsolve_cnstrnt_label.dats │ │ │ ├── patsolve_cnstrnt_location.dats │ │ │ ├── patsolve_cnstrnt_s2cst.dats │ │ │ ├── patsolve_cnstrnt_s2exp.dats │ │ │ ├── patsolve_cnstrnt_s2rt.dats │ │ │ ├── patsolve_cnstrnt_s2var.dats │ │ │ ├── patsolve_cnstrnt_s2vvar.dats │ │ │ ├── patsolve_cnstrnt_s3itm.dats │ │ │ ├── patsolve_cnstrnt_stamp.dats │ │ │ └── patsolve_cnstrnt_symbol.dats │ │ ├── PARSING │ │ │ ├── patsolve_parsing_c3nstr.dats │ │ │ ├── patsolve_parsing_h3ypo.dats │ │ │ ├── patsolve_parsing_label.dats │ │ │ ├── patsolve_parsing_s2cst.dats │ │ │ ├── patsolve_parsing_s2exp.dats │ │ │ ├── patsolve_parsing_s2rt.dats │ │ │ ├── patsolve_parsing_s2var.dats │ │ │ ├── patsolve_parsing_s2vvar.dats │ │ │ └── patsolve_parsing_s3itm.dats │ │ ├── patsolve_cnstrnt.dats │ │ ├── patsolve_commarg.dats │ │ ├── patsolve_main.dats │ │ ├── patsolve_mylib.dats │ │ └── patsolve_parsing.dats │ ├── Makefile │ ├── README │ ├── SATS │ │ ├── patsolve_cnstrnt.sats │ │ ├── patsolve_commarg.sats │ │ └── patsolve_parsing.sats │ ├── TEST │ │ ├── Makefile │ │ ├── fact.dats │ │ └── trigfuns.dats │ ├── bin │ │ └── .keeper │ └── package.json ├── CATS-atscc2clj │ ├── CATS-parsemit │ ├── DATS │ │ ├── atscc2clj_emit.dats │ │ ├── atscc2clj_emit2.dats │ │ └── atscc2clj_main.dats │ ├── Makefile │ ├── TEST │ │ ├── Makefile │ │ ├── acker.dats │ │ ├── f91.dats │ │ ├── fact.dats │ │ ├── fact2.dats │ │ ├── fact3.dats │ │ ├── fact4.dats │ │ ├── isevn.dats │ │ ├── libatscc2clj │ │ │ └── .gitignore │ │ ├── listlen.dats │ │ ├── listmap.dats │ │ ├── loop_fnx3.dats │ │ ├── queens_comb.dats │ │ ├── queens_simple.dats │ │ ├── rtfind.dats │ │ ├── rtfind2.dats │ │ ├── sieve_lazy.dats │ │ ├── sieve_llazy.dats │ │ ├── twice.dats │ │ └── weekday.dats │ ├── bin │ │ └── .gitkeep │ └── npm │ │ ├── CATS │ │ └── catsparse_all_dats.c │ │ ├── Makefile │ │ └── package.json ├── CATS-atscc2erl │ ├── CATS-parsemit │ ├── CBOOT │ │ ├── JS │ │ │ ├── Makefile │ │ │ └── main0.dats │ │ └── Makefile │ ├── DATS │ │ ├── atscc2erl_emit.dats │ │ ├── atscc2erl_emit2.dats │ │ ├── atscc2erl_main.dats │ │ └── libatscc2erl_ext.dats │ ├── Makefile │ ├── TEST │ │ ├── Makefile │ │ ├── Sessiontype │ │ │ ├── CATS │ │ │ │ ├── MPST │ │ │ │ │ └── MPST_cats.hrl │ │ │ │ ├── basis1_cats.hrl │ │ │ │ ├── basis2_cats.hrl │ │ │ │ └── basis_cats.hrl │ │ │ ├── DATS │ │ │ │ ├── array.dats │ │ │ │ ├── basis_chan2.dats │ │ │ │ ├── co-list.dats │ │ │ │ └── list.dats │ │ │ ├── SATS │ │ │ │ ├── array.sats │ │ │ │ ├── basis.sats │ │ │ │ ├── co-list.sats │ │ │ │ └── list.sats │ │ │ ├── TEST1 │ │ │ │ ├── Makefile │ │ │ │ ├── bitstr.dats │ │ │ │ ├── fact.dats │ │ │ │ ├── fib.dats │ │ │ │ ├── libatscc2erl │ │ │ │ │ ├── .keeper │ │ │ │ │ ├── Sessiontype_mylibats2erl_all.hrl │ │ │ │ │ └── libatscc2erl_all.hrl │ │ │ │ ├── mergesort.dats │ │ │ │ ├── mergesort2.dats │ │ │ │ ├── queue.dats │ │ │ │ ├── queue2.dats │ │ │ │ └── sieve.dats │ │ │ ├── TEST2 │ │ │ │ ├── MPST_S0B1B2.dats │ │ │ │ ├── Makefile │ │ │ │ ├── bitstr.dats │ │ │ │ ├── fact.dats │ │ │ │ ├── fib.dats │ │ │ │ ├── fib2.dats │ │ │ │ ├── libatscc2erl │ │ │ │ │ ├── .keeper │ │ │ │ │ ├── Sessiontype_mylibats2erl_all.hrl │ │ │ │ │ └── libatscc2erl_all.hrl │ │ │ │ ├── mergesort.dats │ │ │ │ ├── mergesort2.dats │ │ │ │ ├── queue.dats │ │ │ │ ├── queue2.dats │ │ │ │ ├── sieve.dats │ │ │ │ └── sstree.dats │ │ │ ├── mylibats2erl1_all.hrl │ │ │ ├── mylibats2erl2_all.hrl │ │ │ └── output │ │ │ │ └── DATS │ │ │ │ └── .keeper │ │ ├── acker.dats │ │ ├── f91.dats │ │ ├── fact.dats │ │ ├── fact2.dats │ │ ├── fact3.dats │ │ ├── fact4.dats │ │ ├── fact5.dats │ │ ├── isevn.dats │ │ ├── libatscc2erl │ │ │ └── .gitignore │ │ ├── listlen.dats │ │ ├── listmap.dats │ │ ├── loop_fnx3.dats │ │ ├── queens.dats │ │ ├── rtfind.dats │ │ ├── rtfind2.dats │ │ ├── twice.dats │ │ └── weekday.dats │ ├── bin │ │ └── .gitkeep │ └── npm │ │ ├── CATS │ │ └── catsparse_all_dats.c │ │ ├── Makefile │ │ └── package.json ├── CATS-atscc2js │ ├── CATS-parsemit │ ├── CBOOT │ │ ├── JS │ │ │ ├── Makefile │ │ │ ├── TEST │ │ │ │ ├── ATSCC2JS │ │ │ │ │ └── .keeper │ │ │ │ ├── Makefile │ │ │ │ ├── libatscc2js_io.js │ │ │ │ ├── libatscc2js_pre.js │ │ │ │ ├── libatscc2js_worker.dats │ │ │ │ ├── test_libatscc2js.dats │ │ │ │ ├── test_libatscc2js.html │ │ │ │ ├── wktest_libatscc2js.dats │ │ │ │ └── wktest_libatscc2js.html │ │ │ └── main0.dats │ │ └── Makefile │ ├── DATS │ │ ├── atscc2js_emit.dats │ │ ├── atscc2js_emit2.dats │ │ ├── atscc2js_main.dats │ │ └── libatscc2js_ext.dats │ ├── Makefile │ ├── TEST │ │ ├── Makefile │ │ ├── QueenPuzzle_sol.dats │ │ ├── WEBDEMO │ │ │ ├── DATS_JS │ │ │ │ └── .keeper │ │ │ ├── Makefile │ │ │ ├── mytest.dats │ │ │ └── mytest.html │ │ ├── acker.dats │ │ ├── f91.dats │ │ ├── fact.dats │ │ ├── fact2.dats │ │ ├── fib.dats │ │ ├── fibats.dats │ │ ├── hello.dats │ │ ├── isevn.dats │ │ ├── libatscc2js │ │ │ ├── .gitignore │ │ │ ├── CATS │ │ │ │ └── .keeper │ │ │ └── DATS │ │ │ │ └── .keeper │ │ ├── listlen.dats │ │ ├── listmap.dats │ │ ├── mergesort.dats │ │ ├── process_test.dats │ │ ├── queens_comb.dats │ │ ├── queens_simple.dats │ │ ├── rtfind.dats │ │ ├── rtfind2.dats │ │ ├── sieve_lazy.dats │ │ ├── sieve_llazy.dats │ │ └── twice.dats │ ├── bin │ │ └── .gitkeep │ └── npm │ │ ├── CATS │ │ └── catsparse_all_dats.c │ │ ├── Makefile │ │ └── package.json ├── CATS-atscc2php │ ├── CATS-parsemit │ ├── DATS │ │ ├── atscc2php_emit.dats │ │ ├── atscc2php_emit2.dats │ │ └── atscc2php_main.dats │ ├── Makefile │ ├── TEST │ │ ├── Makefile │ │ ├── WEBDEMO │ │ │ ├── DATS_PHP │ │ │ │ ├── acker_dats.php │ │ │ │ ├── fact_dats.php │ │ │ │ ├── fibats_dats.php │ │ │ │ └── multable_dats.php │ │ │ ├── Makefile │ │ │ ├── libatscc2php_all.php │ │ │ ├── mytest.html │ │ │ ├── mytest2_process.php │ │ │ └── mytest_process.php │ │ ├── acker.dats │ │ ├── fact.dats │ │ ├── fact2.dats │ │ ├── fibats.dats │ │ ├── isevn.dats │ │ ├── libatscc2php │ │ │ └── .gitignore │ │ ├── multable.dats │ │ ├── mytestall.php │ │ ├── queens.dats │ │ ├── queens_comb.dats │ │ ├── refcount.dats │ │ ├── rtfind.dats │ │ ├── rtfind2.dats │ │ ├── sieve_lazy.dats │ │ ├── sieve_llazy.dats │ │ ├── twice.dats │ │ └── weekday.dats │ ├── bin │ │ └── .gitkeep │ └── npm │ │ ├── CATS │ │ └── catsparse_all_dats.c │ │ ├── Makefile │ │ └── package.json ├── CATS-atscc2pl │ ├── CATS-parsemit │ ├── DATS │ │ ├── atscc2pl_emit.dats │ │ ├── atscc2pl_emit2.dats │ │ └── atscc2pl_main.dats │ ├── Makefile │ ├── TEST │ │ ├── Makefile │ │ ├── acker.dats │ │ ├── f91.dats │ │ ├── fact.dats │ │ ├── fact2.dats │ │ ├── isevn.dats │ │ ├── libatscc2pl │ │ │ └── .gitignore │ │ ├── listlen.dats │ │ ├── listmap.dats │ │ ├── queens.dats │ │ ├── queens_comb.dats │ │ ├── rtfind.dats │ │ ├── rtfind2.dats │ │ ├── sieve_lazy.dats │ │ ├── sieve_llazy.dats │ │ ├── twice.dats │ │ └── weekday.dats │ ├── bin │ │ └── .gitkeep │ └── npm │ │ ├── CATS │ │ └── catsparse_all_dats.c │ │ ├── Makefile │ │ └── package.json ├── CATS-atscc2py3 │ ├── CATS-parsemit │ ├── DATS │ │ ├── atscc2py3_emit.dats │ │ ├── atscc2py3_emit2.dats │ │ └── atscc2py3_main.dats │ ├── Makefile │ ├── README │ ├── TEST │ │ ├── Makefile │ │ ├── PYlist_test.dats │ │ ├── acker.dats │ │ ├── f91.dats │ │ ├── fact.dats │ │ ├── fact2.dats │ │ ├── fib.dats │ │ ├── fibats.dats │ │ ├── isevn.dats │ │ ├── listlen.dats │ │ ├── listmap.dats │ │ ├── queens_comb.dats │ │ ├── queens_simple.dats │ │ ├── refcount.dats │ │ ├── rtfind.dats │ │ ├── rtfind2.dats │ │ ├── sieve_lazy.dats │ │ ├── sieve_llazy.dats │ │ ├── twice.dats │ │ └── weekday.dats │ ├── bin │ │ └── .gitkeep │ └── npm │ │ ├── CATS │ │ └── catsparse_all_dats.c │ │ ├── Makefile │ │ └── package.json ├── CATS-atscc2r34 │ ├── CATS-parsemit │ ├── DATS │ │ ├── atscc2r34_emit.dats │ │ ├── atscc2r34_emit2.dats │ │ └── atscc2r34_main.dats │ ├── Makefile │ ├── TEST │ │ ├── DATA │ │ │ └── NDX-2018-06-23.csv │ │ ├── Makefile │ │ ├── acker.dats │ │ ├── cs320-2017-fall-assign04.dats │ │ ├── fact.dats │ │ ├── fact1.dats │ │ ├── fact2.dats │ │ ├── fib.dats │ │ ├── isevn.dats │ │ ├── libatscc2r34 │ │ │ ├── .gitignore │ │ │ ├── .keeper │ │ │ └── DATS │ │ │ │ └── .keeper │ │ ├── listlen.dats │ │ ├── listmap.dats │ │ ├── lms_solve.dats │ │ ├── queens_comb.dats │ │ ├── queens_simple.dats │ │ ├── rtfind.dats │ │ ├── rtfind2.dats │ │ ├── sieve_lazy.dats │ │ ├── sieve_llazy.dats │ │ ├── statfuns.dats │ │ └── twice.dats │ ├── bin │ │ └── .gitkeep │ └── npm │ │ ├── CATS │ │ └── catsparse_all_dats.c │ │ ├── Makefile │ │ └── package.json ├── CATS-atscc2scm │ ├── CATS-parsemit │ ├── DATS │ │ ├── atscc2scm_emit.dats │ │ ├── atscc2scm_emit2.dats │ │ └── atscc2scm_main.dats │ ├── Makefile │ ├── TEST │ │ ├── Makefile │ │ ├── acker.dats │ │ ├── f91.dats │ │ ├── fact.dats │ │ ├── fact2.dats │ │ ├── fact3.dats │ │ ├── fact4.dats │ │ ├── isevn.dats │ │ ├── libatscc2scm │ │ │ ├── .gitignore │ │ │ ├── .keeper │ │ │ └── DATS │ │ │ │ └── .keeper │ │ ├── listlen.dats │ │ ├── listmap.dats │ │ ├── loop_fnx3.dats │ │ ├── queens.dats │ │ ├── rtfind.dats │ │ ├── rtfind2.dats │ │ ├── sieve_lazy.dats │ │ ├── sieve_llazy.dats │ │ ├── twice.dats │ │ └── weekday.dats │ ├── bin │ │ └── .gitkeep │ └── npm │ │ ├── CATS │ │ └── catsparse_all_dats.c │ │ ├── Makefile │ │ └── package.json ├── CATS-parsemit │ ├── CATS │ │ └── .keeper │ ├── DATS │ │ ├── catsparse_emit.dats │ │ ├── catsparse_error.dats │ │ ├── catsparse_fname.dats │ │ ├── catsparse_fundecl.dats │ │ ├── catsparse_global.dats │ │ ├── catsparse_lexbuf.dats │ │ ├── catsparse_lexerr.dats │ │ ├── catsparse_lexing.dats │ │ ├── catsparse_mylib.dats │ │ ├── catsparse_parerr.dats │ │ ├── catsparse_parsing.dats │ │ ├── catsparse_parsing_d0ecl.dats │ │ ├── catsparse_parsing_d0exp.dats │ │ ├── catsparse_parsing_instr.dats │ │ ├── catsparse_posloc.dats │ │ ├── catsparse_print.dats │ │ ├── catsparse_symbol.dats │ │ ├── catsparse_syntax.dats │ │ ├── catsparse_tokbuf.dats │ │ └── catsparse_typedef.dats │ ├── Makefile │ ├── SATS │ │ ├── catsparse.sats │ │ ├── catsparse_emit.sats │ │ ├── catsparse_fundecl.sats │ │ ├── catsparse_parsing.sats │ │ ├── catsparse_syntax.sats │ │ └── catsparse_typedef.sats │ ├── catsparse_all.dats │ ├── mylibies.hats │ ├── mylibies_link.hats │ └── package.json ├── ats2cpp │ ├── H │ ├── STL │ │ ├── CATS │ │ │ ├── deque.cats │ │ │ ├── queue.cats │ │ │ ├── stack.cats │ │ │ └── vector.cats │ │ ├── DATS │ │ │ ├── deque_queue.dats │ │ │ ├── queue_queue.dats │ │ │ ├── stack_stack.dats │ │ │ ├── vector_array.dats │ │ │ └── vector_stack.dats │ │ └── TEST │ │ │ ├── Makefile │ │ │ ├── test_deque_queue.dats │ │ │ ├── test_queue_queue.dats │ │ │ ├── test_stack_stack.dats │ │ │ ├── test_vector_array.dats │ │ │ └── test_vector_stack.dats │ ├── TEST │ │ ├── Makefile │ │ ├── README │ │ ├── test01.dats │ │ └── test02.dats │ ├── ccomp │ │ ├── pats_ats2cpp_prelude.h │ │ ├── pats_ccomp_basics.h │ │ ├── pats_ccomp_config.h │ │ ├── pats_ccomp_exception.h │ │ ├── pats_ccomp_instrset.h │ │ ├── pats_ccomp_memalloc.h │ │ ├── pats_ccomp_memalloc_gcbdw.h │ │ ├── pats_ccomp_memalloc_libc.h │ │ ├── pats_ccomp_memalloc_user.h │ │ ├── pats_ccomp_memalloc_user2.h │ │ ├── pats_ccomp_memalloca.h │ │ ├── pats_ccomp_runtime.c │ │ ├── pats_ccomp_runtime_memalloc.c │ │ └── pats_ccomp_typedefs.h │ ├── libats │ │ ├── BUCS520 │ │ │ └── GraphSearch │ │ │ │ ├── DATS │ │ │ │ ├── GraphSearch.dats │ │ │ │ ├── GraphSearch_bfs.dats │ │ │ │ └── GraphSearch_dfs.dats │ │ │ │ └── TEST │ │ │ │ ├── DoubletsPlay.dats │ │ │ │ ├── GameOf24Play.dats │ │ │ │ ├── Makefile │ │ │ │ └── QueenPuzzle.dats │ │ ├── CATS │ │ │ ├── deqarray.cats │ │ │ ├── dynarray.cats │ │ │ ├── hashfun.cats │ │ │ ├── qlist.cats │ │ │ ├── stkarray.cats │ │ │ └── stringbuf.cats │ │ ├── ML │ │ │ └── CATS │ │ │ │ ├── array0.cats │ │ │ │ └── strarr.cats │ │ └── libc │ │ │ └── CATS │ │ │ ├── dirent.cats │ │ │ ├── errno.cats │ │ │ ├── fcntl.cats │ │ │ ├── float.cats │ │ │ ├── math.cats │ │ │ ├── signal.cats │ │ │ ├── stdio.cats │ │ │ ├── stdlib.cats │ │ │ ├── string.cats │ │ │ ├── strings.cats │ │ │ ├── sys │ │ │ ├── stat.cats │ │ │ ├── types.cats │ │ │ └── wait.cats │ │ │ ├── time.cats │ │ │ └── unistd.cats │ └── prelude │ │ ├── CATS │ │ ├── array.cats │ │ ├── arrayptr.cats │ │ ├── arrayref.cats │ │ ├── basics.cats │ │ ├── bool.cats │ │ ├── char.cats │ │ ├── filebas.cats │ │ ├── float.cats │ │ ├── fprintf.cats │ │ ├── integer.cats │ │ ├── integer_fixed.cats │ │ ├── integer_long.cats │ │ ├── integer_short.cats │ │ ├── integer_size.cats │ │ ├── memory.cats │ │ ├── pointer.cats │ │ └── string.cats │ │ └── staloadall.hats ├── atscntrb │ ├── atscntrb-hx-cstream │ │ ├── DATS │ │ │ ├── cstream.dats │ │ │ ├── cstream_cloref.dats │ │ │ ├── cstream_fileptr.dats │ │ │ ├── cstream_fileref.dats │ │ │ ├── cstream_fun.dats │ │ │ ├── cstream_string.dats │ │ │ ├── cstream_strptr.dats │ │ │ └── cstream_tokener.dats │ │ ├── README.md │ │ ├── SATS │ │ │ ├── DOCUGEN │ │ │ │ ├── HTML │ │ │ │ │ └── .keeper │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.atxt │ │ │ │ ├── Makefile.gen │ │ │ │ ├── cstream.atxt │ │ │ │ ├── cstream_tokener.atxt │ │ │ │ └── theDeclpostamble.html │ │ │ ├── cstream.sats │ │ │ └── cstream_tokener.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ ├── test03.dats │ │ │ └── tokener.dats │ │ ├── mylibies.hats │ │ ├── mylibies_link.hats │ │ └── package.json │ ├── atscntrb-hx-getargs │ │ ├── DATS │ │ │ └── getargs.dats │ │ ├── Makefile_test │ │ ├── README.md │ │ ├── SATS │ │ │ └── getargs.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test00.dats │ │ │ └── test01.dats │ │ ├── mylibies.hats │ │ ├── mylibies_link.hats │ │ └── package.json │ ├── atscntrb-hx-globals │ │ ├── HATS │ │ │ ├── gcount.hats │ │ │ ├── gdeqarray.hats │ │ │ ├── ghashtbl_chain.hats │ │ │ ├── ghashtbl_linprb.hats │ │ │ ├── globvar.hats │ │ │ ├── gobjptr.hats │ │ │ └── gstacklst.hats │ │ ├── README.md │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ ├── test03.dats │ │ │ ├── test04.dats │ │ │ ├── test05-1.dats │ │ │ └── test05-2.dats │ │ └── package.json │ ├── atscntrb-hx-intinf │ │ ├── DATS │ │ │ ├── gintinf_t.dats │ │ │ ├── intinf_t.dats │ │ │ └── intinf_vt.dats │ │ ├── README.md │ │ ├── SATS │ │ │ ├── DOCUGEN │ │ │ │ ├── HTML │ │ │ │ │ └── .keeper │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.atxt │ │ │ │ ├── Makefile.gen │ │ │ │ ├── intinf.atxt │ │ │ │ ├── intinf_t.atxt │ │ │ │ ├── intinf_vt.atxt │ │ │ │ └── theDeclpostamble.html │ │ │ ├── intinf.sats │ │ │ ├── intinf_t.sats │ │ │ └── intinf_vt.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ ├── test03.dats │ │ │ ├── test04.dats │ │ │ ├── test05.dats │ │ │ └── test06.dats │ │ ├── mydepies.hats │ │ ├── mylibies.hats │ │ └── package.json │ ├── atscntrb-hx-libcurl │ │ ├── CATS │ │ │ └── curl.cats │ │ ├── DATS │ │ │ ├── curl.dats │ │ │ ├── curl_curl.dats │ │ │ └── curl_easy.dats │ │ ├── SATS │ │ │ ├── curl.sats │ │ │ ├── curl_curl.sats │ │ │ └── curl_easy.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test00.dats │ │ │ └── test01.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── atscntrb-hx-libgmp │ │ ├── CATS │ │ │ └── gmp.cats │ │ ├── DATS │ │ │ └── gmp.dats │ │ ├── README.md │ │ ├── SATS │ │ │ ├── DOCUGEN │ │ │ │ ├── HTML │ │ │ │ │ └── .keeper │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.atxt │ │ │ │ ├── Makefile.gen │ │ │ │ ├── Makefile_atxt.dats │ │ │ │ ├── Makefile_atxt.txt │ │ │ │ ├── gmp.atxt │ │ │ │ ├── gmp_atxt.txt │ │ │ │ ├── htmlgendecl_atxt.dats │ │ │ │ ├── htmlgendecl_atxt.txt │ │ │ │ ├── htmlgendecl_data_atxt.dats │ │ │ │ └── theDeclpostamble.html │ │ │ └── gmp.sats │ │ ├── TEST │ │ │ └── pidigits │ │ │ │ ├── Makefile │ │ │ │ └── pidigits.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── atscntrb-hx-libhiredis │ │ ├── CATS │ │ │ └── hiredis.cats │ │ ├── DATS │ │ │ ├── hiredis.dats │ │ │ └── hiredis_ML.dats │ │ ├── Makefile_test │ │ ├── SATS │ │ │ ├── DOCUGEN │ │ │ │ ├── HTML │ │ │ │ │ └── .keeper │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.atxt │ │ │ │ ├── Makefile.gen │ │ │ │ ├── hiredis.atxt │ │ │ │ ├── hiredis_ML.atxt │ │ │ │ └── theDeclpostamble.html │ │ │ ├── hiredis.sats │ │ │ └── hiredis_ML.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── fact.dats │ │ │ ├── test00.dats │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ ├── test03_1.dats │ │ │ └── test03_2.dats │ │ ├── mylibies.hats │ │ ├── mylibies_link.hats │ │ └── package.json │ ├── atscntrb-hx-libjansson │ │ ├── CATS │ │ │ ├── CODEGEN │ │ │ │ ├── Makefile │ │ │ │ ├── jansson.atxt │ │ │ │ └── jansson.cats │ │ │ └── jansson.cats │ │ ├── DATS │ │ │ └── jansson.dats │ │ ├── Makefile_test │ │ ├── SATS │ │ │ ├── DOCUGEN │ │ │ │ ├── HTML │ │ │ │ │ └── .keeper │ │ │ │ ├── Makefile.atxt │ │ │ │ ├── Makefile.gen │ │ │ │ ├── TRYIT │ │ │ │ │ └── .keeper │ │ │ │ ├── jansson.atxt │ │ │ │ └── theDeclpostamble.html │ │ │ └── jansson.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── github_commit_query.dats │ │ │ ├── test01.dats │ │ │ └── test02.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── atscntrb-hx-libjson-c │ │ ├── CATS │ │ │ ├── json.cats │ │ │ └── printbuf.cats │ │ ├── DATS │ │ │ ├── json.dats │ │ │ └── json_ML.dats │ │ ├── SATS │ │ │ ├── DOCUGEN │ │ │ │ ├── Makefile.atxt │ │ │ │ ├── Makefile.gen │ │ │ │ ├── arraylist.atxt │ │ │ │ ├── json.atxt │ │ │ │ ├── json_ML.atxt │ │ │ │ ├── json_object.atxt │ │ │ │ ├── json_object_iterator.atxt │ │ │ │ ├── json_tokener.atxt │ │ │ │ ├── json_util.atxt │ │ │ │ ├── linkhash.atxt │ │ │ │ ├── mybasis.atxt │ │ │ │ ├── printbuf.atxt │ │ │ │ └── theDeclpostamble.html │ │ │ ├── arraylist.sats │ │ │ ├── json.sats │ │ │ ├── json_ML.sats │ │ │ ├── json_object.sats │ │ │ ├── json_object_iterator.sats │ │ │ ├── json_tokener.sats │ │ │ ├── json_util.sats │ │ │ ├── linkhash.sats │ │ │ ├── mybasis.sats │ │ │ └── printbuf.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test00.dats │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ ├── test03.dats │ │ │ ├── test04.dats │ │ │ ├── test05.dats │ │ │ ├── test06.dats │ │ │ ├── test07.dats │ │ │ └── testlib.dats │ │ ├── mylibies.hats │ │ ├── mylibies_link.hats │ │ └── package.json │ ├── atscntrb-hx-libpcre │ │ ├── CATS │ │ │ └── pcre.cats │ │ ├── DATS │ │ │ ├── pcre.dats │ │ │ └── pcre_ML.dats │ │ ├── SATS │ │ │ ├── DOCUGEN │ │ │ │ ├── HTML │ │ │ │ │ └── .keeper │ │ │ │ ├── Makefile.atxt │ │ │ │ ├── Makefile.gen │ │ │ │ ├── pcre.atxt │ │ │ │ ├── pcre_ML.atxt │ │ │ │ └── theDeclpostamble.html │ │ │ ├── pcre.sats │ │ │ └── pcre_ML.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test00.dats │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ ├── test03.dats │ │ │ ├── test04.dats │ │ │ ├── test05.dats │ │ │ └── test06.dats │ │ ├── mylibies.hats │ │ ├── mylibies_link.hats │ │ └── package.json │ ├── atscntrb-hx-mytesting │ │ ├── DATS │ │ │ ├── foldleft.dats │ │ │ ├── randgen.dats │ │ │ └── timing.dats │ │ ├── README │ │ ├── SATS │ │ │ ├── foldleft.sats │ │ │ ├── randgen.sats │ │ │ └── timing.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ └── test03.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── atscntrb-hx-sdstring │ │ ├── CATS │ │ │ └── sdstring.cats │ │ ├── DATS │ │ │ └── sdstring.dats │ │ ├── H │ │ │ ├── LICENSE │ │ │ ├── sds.c │ │ │ └── sds.h │ │ ├── README.md │ │ ├── SATS │ │ │ └── sdstring.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ └── test03.dats │ │ ├── mylibies.hats │ │ ├── mylibies_link.hats │ │ └── package.json │ └── atscntrb-smt-libz3 │ │ ├── CATS │ │ ├── z3.cats │ │ ├── z3_arithmetic.cats │ │ ├── z3_constapp.cats │ │ ├── z3_numeral.cats │ │ ├── z3_propeq.cats │ │ ├── z3_quantifier.cats │ │ ├── z3_solver.cats │ │ ├── z3_sort.cats │ │ └── z3_symbol.cats │ │ ├── SATS │ │ ├── DOCUGEN │ │ │ ├── Makefile.atxt │ │ │ ├── Makefile.gen │ │ │ ├── z3.atxt │ │ │ ├── z3_propeq.atxt │ │ │ ├── z3_solver.atxt │ │ │ ├── z3_stringconv.atxt │ │ │ └── z3_symbol.atxt │ │ ├── z3.sats │ │ ├── z3_accessor.sats │ │ ├── z3_arithmetic.sats │ │ ├── z3_bitvector.sats │ │ ├── z3_constapp.sats │ │ ├── z3_fixedpoint.sats │ │ ├── z3_goal.sats │ │ ├── z3_header.sats │ │ ├── z3_model.sats │ │ ├── z3_modifier.sats │ │ ├── z3_numeral.sats │ │ ├── z3_params.sats │ │ ├── z3_params_descrs.sats │ │ ├── z3_propeq.sats │ │ ├── z3_quantifier.sats │ │ ├── z3_solver.sats │ │ ├── z3_sort.sats │ │ ├── z3_stats.sats │ │ ├── z3_stringconv.sats │ │ ├── z3_symbol.sats │ │ └── z3_tactic_probe.sats │ │ └── TEST │ │ ├── Makefile │ │ ├── test00.dats │ │ ├── test01.dats │ │ └── test02.dats ├── libatscc │ ├── ATS2-0.3.2 │ │ ├── DATS │ │ │ ├── BUCS320 │ │ │ │ ├── GraphSearch │ │ │ │ │ ├── GraphSearch.dats │ │ │ │ │ ├── GraphSearch_bfs.dats │ │ │ │ │ └── GraphSearch_dfs.dats │ │ │ │ ├── GraphStreamize │ │ │ │ │ ├── GraphStreamize.dats │ │ │ │ │ ├── GraphStreamize_bfs.dats │ │ │ │ │ └── GraphStreamize_dfs.dats │ │ │ │ └── parcomb │ │ │ │ │ └── parcomb.dats │ │ │ ├── ML │ │ │ │ ├── array0.dats │ │ │ │ ├── list0.dats │ │ │ │ ├── matrix0.dats │ │ │ │ └── option0.dats │ │ │ ├── arrayref.dats │ │ │ ├── basics.dats │ │ │ ├── funarray.dats │ │ │ ├── gmatrixref.dats │ │ │ ├── gprint.dats │ │ │ ├── intrange.dats │ │ │ ├── list.dats │ │ │ ├── list_vt.dats │ │ │ ├── matrixref.dats │ │ │ ├── option.dats │ │ │ ├── qlistref.dats │ │ │ ├── slistref.dats │ │ │ ├── stream.dats │ │ │ └── stream_vt.dats │ │ ├── SATS │ │ │ ├── BUCS320 │ │ │ │ ├── parcomb.sats │ │ │ │ └── words.sats │ │ │ ├── ML │ │ │ │ ├── array0.sats │ │ │ │ ├── list0.sats │ │ │ │ ├── matrix0.sats │ │ │ │ └── option0.sats │ │ │ ├── arrayref.sats │ │ │ ├── funarray.sats │ │ │ ├── gmatrixref.sats │ │ │ ├── gprint.sats │ │ │ ├── gvalue.sats │ │ │ ├── intrange.sats │ │ │ ├── list.sats │ │ │ ├── list_vt.sats │ │ │ ├── matrixref.sats │ │ │ ├── option.sats │ │ │ ├── qlistref.sats │ │ │ ├── reference.sats │ │ │ ├── slistref.sats │ │ │ ├── stream.sats │ │ │ └── stream_vt.sats │ │ └── basics.sats │ ├── ATSLIB │ │ └── SATS │ │ │ └── funset_avl.sats │ ├── BUCS320 │ │ ├── DivideConquer │ │ │ └── DATS │ │ │ │ └── DivideConquer.dats │ │ ├── GraphSearch │ │ │ └── DATS │ │ │ │ ├── GraphSearch.dats │ │ │ │ ├── GraphSearch_bfs.dats │ │ │ │ └── GraphSearch_dfs.dats │ │ ├── GraphStreamize │ │ │ └── DATS │ │ │ │ ├── GraphStreamize.dats │ │ │ │ ├── GraphStreamize_bfs.dats │ │ │ │ └── GraphStreamize_dfs.dats │ │ ├── parcomb │ │ │ ├── DATS │ │ │ │ └── parcomb.dats │ │ │ └── SATS │ │ │ │ └── parcomb.sats │ │ └── words │ │ │ └── SATS │ │ │ └── words.sats │ ├── DATS │ │ ├── ML │ │ │ ├── array0.dats │ │ │ ├── list0.dats │ │ │ ├── matrix0.dats │ │ │ └── option0.dats │ │ ├── arrayref.dats │ │ ├── basics.dats │ │ ├── funarray.dats │ │ ├── gmatrixref.dats │ │ ├── gprint.dats │ │ ├── intrange.dats │ │ ├── list.dats │ │ ├── list_vt.dats │ │ ├── matrixref.dats │ │ ├── option.dats │ │ ├── qlistref.dats │ │ ├── slistref.dats │ │ ├── stream.dats │ │ └── stream_vt.dats │ ├── SATS │ │ ├── ML │ │ │ ├── array0.sats │ │ │ ├── list0.sats │ │ │ ├── matrix0.sats │ │ │ └── option0.sats │ │ ├── arrayref.sats │ │ ├── funarray.sats │ │ ├── gmatrixref.sats │ │ ├── gprint.sats │ │ ├── gvalue.sats │ │ ├── intrange.sats │ │ ├── list.sats │ │ ├── list_vt.sats │ │ ├── matrixref.sats │ │ ├── option.sats │ │ ├── qlistref.sats │ │ ├── reference.sats │ │ ├── slistref.sats │ │ ├── stream.sats │ │ └── stream_vt.sats │ └── basics.sats ├── libatscc2clj │ └── ATS2-0.3.2 │ │ ├── CATS │ │ ├── CLJlist_cats.clj │ │ ├── basics_cats.clj │ │ ├── bool_cats.clj │ │ ├── char_cats.clj │ │ ├── filebas_cats.clj │ │ ├── float_cats.clj │ │ ├── integer_cats.clj │ │ ├── print_cats.clj │ │ └── reference_cats.clj │ │ ├── DATS │ │ ├── BUCS320 │ │ │ └── GraphSearch │ │ │ │ ├── GraphSearch_bfs.dats │ │ │ │ └── GraphSearch_dfs.dats │ │ ├── CLJlist.dats │ │ ├── ML │ │ │ ├── list0.dats │ │ │ └── option0.dats │ │ ├── basics.dats │ │ ├── funarray.dats │ │ ├── gprint.dats │ │ ├── intrange.dats │ │ ├── list.dats │ │ ├── list_vt.dats │ │ ├── option.dats │ │ ├── print.dats │ │ ├── qlistref.dats │ │ ├── slistref.dats │ │ ├── stream.dats │ │ └── stream_vt.dats │ │ ├── Makefile │ │ ├── SATS │ │ ├── CLJlist.sats │ │ ├── ML │ │ │ ├── list0.sats │ │ │ └── option0.sats │ │ ├── bool.sats │ │ ├── filebas.sats │ │ ├── float.sats │ │ ├── funarray.sats │ │ ├── gprint.sats │ │ ├── integer.sats │ │ ├── intrange.sats │ │ ├── list.sats │ │ ├── list_vt.sats │ │ ├── option.sats │ │ ├── print.sats │ │ ├── qlistref.sats │ │ ├── reference.sats │ │ ├── slistref.sats │ │ ├── stream.sats │ │ └── stream_vt.sats │ │ ├── TEST │ │ ├── BUCS320 │ │ │ └── GraphSearch │ │ │ │ ├── GameOf24Play_bfs.dats │ │ │ │ ├── GameOf24Play_dfs.dats │ │ │ │ ├── Makefile │ │ │ │ ├── QueenPuzzle_bfs.dats │ │ │ │ └── QueenPuzzle_dfs.dats │ │ ├── Makefile │ │ ├── test01.dats │ │ └── test02.dats │ │ ├── basics_clj.sats │ │ ├── output │ │ ├── .keeper │ │ └── DATS │ │ │ ├── .keeper │ │ │ └── ML │ │ │ └── .keeper │ │ └── staloadall.hats ├── libatscc2erl │ └── ATS2-0.3.2 │ │ ├── CATS │ │ ├── Erlang │ │ │ ├── file_cats.hrl │ │ │ └── filename_cats.hrl │ │ ├── basics_cats.hrl │ │ ├── bool_cats.hrl │ │ ├── float_cats.hrl │ │ ├── integer_cats.hrl │ │ ├── print_cats.hrl │ │ └── reference_cats.hrl │ │ ├── DATS │ │ ├── ML │ │ │ └── option0.dats │ │ ├── basics.dats │ │ ├── intrange.dats │ │ ├── list.dats │ │ ├── option.dats │ │ └── print.dats │ │ ├── Makefile │ │ ├── SATS │ │ ├── CML │ │ │ └── CML.sats │ │ ├── Erlang │ │ │ ├── file.sats │ │ │ └── filename.sats │ │ ├── ML │ │ │ └── option0.sats │ │ ├── bool.sats │ │ ├── float.sats │ │ ├── integer.sats │ │ ├── intrange.sats │ │ ├── list.sats │ │ ├── option.sats │ │ ├── print.sats │ │ └── reference.sats │ │ ├── TEST │ │ └── CML │ │ │ └── primes.dats │ │ ├── basics_erl.sats │ │ ├── output │ │ ├── .keeper │ │ └── DATS │ │ │ ├── .keeper │ │ │ └── ML │ │ │ └── .keeper │ │ └── staloadall.hats ├── libatscc2js │ ├── ATS2-0.3.2 │ │ ├── Bacon.js │ │ │ ├── CATS │ │ │ │ └── baconjs_cats.js │ │ │ ├── DATS │ │ │ │ ├── baconjs.dats │ │ │ │ └── baconjs_ext.dats │ │ │ └── SATS │ │ │ │ ├── baconjs.sats │ │ │ │ ├── baconjs_ext.sats │ │ │ │ └── channel.sats │ │ ├── CATS │ │ │ ├── Bacon.js │ │ │ │ └── baconjs_cats.js │ │ │ ├── HTML │ │ │ │ └── canvas-2d │ │ │ │ │ └── canvas2d_cats.js │ │ │ ├── HTTP │ │ │ │ └── Ajax │ │ │ │ │ └── Ajax_cats.js │ │ │ ├── JSLIBC │ │ │ │ ├── JSdate_cats.js │ │ │ │ ├── JSmath_cats.js │ │ │ │ └── JSmisc_cats.js │ │ │ ├── JSarray_cats.js │ │ │ ├── Node.js │ │ │ │ ├── basics_cats.js │ │ │ │ ├── fprint_cats.js │ │ │ │ └── process_cats.js │ │ │ ├── PRINT │ │ │ │ └── print_store_cats.js │ │ │ ├── basics_cats.js │ │ │ ├── bool_cats.js │ │ │ ├── float_cats.js │ │ │ ├── gvalue_cats.js │ │ │ ├── integer_cats.js │ │ │ └── string_cats.js │ │ ├── DATS │ │ │ ├── BUCS320 │ │ │ │ ├── GraphSearch │ │ │ │ │ ├── GraphSearch_bfs.dats │ │ │ │ │ └── GraphSearch_dfs.dats │ │ │ │ ├── GraphStreamize │ │ │ │ │ ├── GraphStreamize_bfs.dats │ │ │ │ │ └── GraphStreamize_dfs.dats │ │ │ │ └── parcomb │ │ │ │ │ └── parcomb.dats │ │ │ ├── Bacon.js │ │ │ │ ├── baconjs.dats │ │ │ │ └── baconjs_ext.dats │ │ │ ├── JSLIBC │ │ │ │ └── JSmath.dats │ │ │ ├── JSarray.dats │ │ │ ├── ML │ │ │ │ ├── array0.dats │ │ │ │ ├── list0.dats │ │ │ │ ├── matrix0.dats │ │ │ │ └── option0.dats │ │ │ ├── Number │ │ │ │ └── real_double.dats │ │ │ ├── Worker │ │ │ │ ├── channeg.dats │ │ │ │ ├── channeg_session.dats │ │ │ │ ├── channel.dats │ │ │ │ ├── chanpos.dats │ │ │ │ ├── chanpos_session.dats │ │ │ │ └── chanpos_session2.dats │ │ │ ├── arrayref.dats │ │ │ ├── basics.dats │ │ │ ├── char.dats │ │ │ ├── funarray.dats │ │ │ ├── gmatrixref.dats │ │ │ ├── gprint.dats │ │ │ ├── gvalue.dats │ │ │ ├── intrange.dats │ │ │ ├── list.dats │ │ │ ├── list_vt.dats │ │ │ ├── matrixref.dats │ │ │ ├── option.dats │ │ │ ├── print.dats │ │ │ ├── qlistref.dats │ │ │ ├── reference.dats │ │ │ ├── slistref.dats │ │ │ ├── stream.dats │ │ │ ├── stream_vt.dats │ │ │ └── string.dats │ │ ├── Makefile │ │ ├── Node.js │ │ │ ├── CATS │ │ │ │ ├── basics_cats.js │ │ │ │ ├── fprint_cats.js │ │ │ │ └── process_cats.js │ │ │ ├── DATS │ │ │ │ └── .gitkeep │ │ │ └── SATS │ │ │ │ ├── basics.sats │ │ │ │ ├── fprint.sats │ │ │ │ └── process.sats │ │ ├── README │ │ ├── SATS │ │ │ ├── BUCS320 │ │ │ │ ├── parcomb.sats │ │ │ │ └── words.sats │ │ │ ├── Bacon.js │ │ │ │ ├── baconjs.sats │ │ │ │ ├── baconjs_ext.sats │ │ │ │ └── channel.sats │ │ │ ├── HTML │ │ │ │ ├── WebGL │ │ │ │ │ └── WebGL.sats │ │ │ │ └── canvas-2d │ │ │ │ │ └── canvas2d.sats │ │ │ ├── HTTP │ │ │ │ └── Ajax │ │ │ │ │ └── Ajax.sats │ │ │ ├── JSLIBC │ │ │ │ ├── JSdate.sats │ │ │ │ ├── JSmath.sats │ │ │ │ └── JSmisc.sats │ │ │ ├── JSarray.sats │ │ │ ├── ML │ │ │ │ ├── array0.sats │ │ │ │ ├── list0.sats │ │ │ │ ├── matrix0.sats │ │ │ │ └── option0.sats │ │ │ ├── Node.js │ │ │ │ ├── basics.sats │ │ │ │ ├── fprint.sats │ │ │ │ └── process.sats │ │ │ ├── Worker │ │ │ │ ├── channel.sats │ │ │ │ ├── channel_session.sats │ │ │ │ └── channel_session2.sats │ │ │ ├── XMLDOC │ │ │ │ └── XMLDOC.sats │ │ │ ├── arrayref.sats │ │ │ ├── bool.sats │ │ │ ├── char.sats │ │ │ ├── filebas.sats │ │ │ ├── float.sats │ │ │ ├── funarray.sats │ │ │ ├── gmatrixref.sats │ │ │ ├── gprint.sats │ │ │ ├── gvalue.sats │ │ │ ├── integer.sats │ │ │ ├── intrange.sats │ │ │ ├── list.sats │ │ │ ├── list_vt.sats │ │ │ ├── matrixref.sats │ │ │ ├── option.sats │ │ │ ├── print.sats │ │ │ ├── qlistref.sats │ │ │ ├── reference.sats │ │ │ ├── slistref.sats │ │ │ ├── stream.sats │ │ │ ├── stream_vt.sats │ │ │ └── string.sats │ │ ├── TEST │ │ │ ├── BUCS320 │ │ │ │ └── GraphSearch │ │ │ │ │ ├── GameOf24Play_bfs.dats │ │ │ │ │ ├── GameOf24Play_dfs.dats │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── QueenPuzzle_bfs.dats │ │ │ │ │ └── QueenPuzzle_dfs.dats │ │ │ ├── Makefile │ │ │ ├── Worker │ │ │ │ ├── Makefile │ │ │ │ ├── rpc_client.dats │ │ │ │ ├── rpc_client.html │ │ │ │ ├── rpc_server.dats │ │ │ │ ├── test2_client.dats │ │ │ │ ├── test2_client.html │ │ │ │ ├── test2_prot.sats │ │ │ │ ├── test2_server.dats │ │ │ │ ├── test3_client.dats │ │ │ │ ├── test3_client.html │ │ │ │ ├── test3_prot.sats │ │ │ │ ├── test3_server.dats │ │ │ │ ├── test_client.dats │ │ │ │ ├── test_client.html │ │ │ │ ├── test_prot.sats │ │ │ │ └── test_server.dats │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ └── test04.dats │ │ ├── basics_js.sats │ │ ├── output │ │ │ ├── .keeper │ │ │ └── DATS │ │ │ │ ├── .keeper │ │ │ │ ├── BUCS320 │ │ │ │ ├── .keeper │ │ │ │ └── parcomb │ │ │ │ │ └── .keeper │ │ │ │ ├── Bacon.js │ │ │ │ └── .keeper │ │ │ │ └── ML │ │ │ │ └── .keeper │ │ └── staloadall.hats │ ├── BUCS320 │ │ ├── DivideConquer │ │ │ ├── DATS │ │ │ │ └── DivideConquer.dats │ │ │ ├── TEST │ │ │ │ ├── Makefile │ │ │ │ └── test01.dats │ │ │ └── mylibies.hats │ │ ├── GraphSearch │ │ │ ├── DATS │ │ │ │ ├── GraphSearch_bfs.dats │ │ │ │ └── GraphSearch_dfs.dats │ │ │ ├── TEST │ │ │ │ ├── GameOf24Play_bfs.dats │ │ │ │ ├── GameOf24Play_dfs.dats │ │ │ │ ├── Makefile │ │ │ │ ├── QueenPuzzle_bfs.dats │ │ │ │ └── QueenPuzzle_dfs.dats │ │ │ └── mylibies.hats │ │ ├── GraphStreamize │ │ │ ├── DATS │ │ │ │ ├── GraphStreamize_bfs.dats │ │ │ │ └── GraphStreamize_dfs.dats │ │ │ ├── TEST │ │ │ │ ├── Makefile │ │ │ │ ├── QueenPuzzle_bfs.dats │ │ │ │ └── QueenPuzzle_dfs.dats │ │ │ └── mylibies.hats │ │ ├── parcomb │ │ │ ├── DATS │ │ │ │ └── parcomb.dats │ │ │ └── SATS │ │ │ │ └── parcomb.sats │ │ └── words │ │ │ └── SATS │ │ │ └── words.sats │ ├── Bacon.js │ │ ├── CATS │ │ │ └── baconjs_cats.js │ │ ├── DATS │ │ │ ├── baconjs.dats │ │ │ └── baconjs_ext.dats │ │ ├── Makefile │ │ ├── SATS │ │ │ ├── baconjs.sats │ │ │ └── baconjs_ext.sats │ │ ├── TEST │ │ │ ├── Counter │ │ │ │ ├── Counter.dats │ │ │ │ ├── Counter.html │ │ │ │ └── Makefile │ │ │ └── Counter_bus │ │ │ │ ├── Counter_bus.dats │ │ │ │ ├── Counter_bus.html │ │ │ │ └── Makefile │ │ ├── mylibies.dats │ │ ├── mylibies.hats │ │ ├── output │ │ │ └── DATS │ │ │ │ └── .gitkeep │ │ └── package.json │ ├── CATS │ │ ├── JSLIBC │ │ │ ├── JSdate_cats.js │ │ │ ├── JSmath_cats.js │ │ │ └── JSmisc_cats.js │ │ ├── JSarray_cats.js │ │ ├── PRINT │ │ │ └── print_store_cats.js │ │ ├── basics_cats.js │ │ ├── bool_cats.js │ │ ├── float_cats.js │ │ ├── gvalue_cats.js │ │ ├── integer_cats.js │ │ └── string_cats.js │ ├── DATS │ │ ├── JSLIBC │ │ │ └── JSmath.dats │ │ ├── JSarray.dats │ │ ├── ML │ │ │ ├── array0.dats │ │ │ ├── list0.dats │ │ │ ├── matrix0.dats │ │ │ └── option0.dats │ │ ├── Number │ │ │ └── real_double.dats │ │ ├── arrayref.dats │ │ ├── basics.dats │ │ ├── char.dats │ │ ├── funarray.dats │ │ ├── gmatrixref.dats │ │ ├── gprint.dats │ │ ├── gvalue.dats │ │ ├── intrange.dats │ │ ├── list.dats │ │ ├── list_vt.dats │ │ ├── matrixref.dats │ │ ├── option.dats │ │ ├── print.dats │ │ ├── qlistref.dats │ │ ├── reference.dats │ │ ├── slistref.dats │ │ ├── stream.dats │ │ ├── stream_vt.dats │ │ └── string.dats │ ├── HTML │ │ ├── Canvas │ │ │ ├── CATS │ │ │ │ └── canvas2d_cats.js │ │ │ ├── SATS │ │ │ │ └── canvas2d.sats │ │ │ ├── TEST │ │ │ │ └── .keeper │ │ │ ├── mylibies.hats │ │ │ └── package.json │ │ └── DOM │ │ │ ├── CATS │ │ │ └── document_cats.js │ │ │ ├── DATS │ │ │ └── document.dats │ │ │ ├── SATS │ │ │ └── document.sats │ │ │ ├── TEST │ │ │ └── test01.dats │ │ │ └── mylibies.hats │ ├── HTTP │ │ └── Ajax │ │ │ ├── CATS │ │ │ └── Ajax_cats.js │ │ │ └── SATS │ │ │ └── Ajax.sats │ ├── Makefile │ ├── Node.js │ │ ├── CATS │ │ │ ├── basics_cats.js │ │ │ ├── fprint_cats.js │ │ │ └── process_cats.js │ │ └── SATS │ │ │ ├── basics.sats │ │ │ ├── fprint.sats │ │ │ └── process.sats │ ├── SATS │ │ ├── JSLIBC │ │ │ ├── JSdate.sats │ │ │ ├── JSmath.sats │ │ │ └── JSmisc.sats │ │ ├── JSarray.sats │ │ ├── ML │ │ │ ├── array0.sats │ │ │ ├── list0.sats │ │ │ ├── matrix0.sats │ │ │ └── option0.sats │ │ ├── arrayref.sats │ │ ├── bool.sats │ │ ├── char.sats │ │ ├── filebas.sats │ │ ├── float.sats │ │ ├── funarray.sats │ │ ├── gmatrixref.sats │ │ ├── gprint.sats │ │ ├── gvalue.sats │ │ ├── integer.sats │ │ ├── intrange.sats │ │ ├── list.sats │ │ ├── list_vt.sats │ │ ├── matrixref.sats │ │ ├── option.sats │ │ ├── print.sats │ │ ├── qlistref.sats │ │ ├── reference.sats │ │ ├── slistref.sats │ │ ├── stream.sats │ │ ├── stream_vt.sats │ │ ├── string.sats │ │ └── xmldoc.sats │ ├── WorkerSession │ │ ├── DATS │ │ │ ├── channeg.dats │ │ │ ├── channeg_session.dats │ │ │ ├── channel.dats │ │ │ ├── chanpos.dats │ │ │ ├── chanpos_session.dats │ │ │ └── chanpos_session2.dats │ │ ├── SATS │ │ │ ├── channel.sats │ │ │ ├── channel_session.sats │ │ │ └── channel_session2.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── rpc_client.dats │ │ │ ├── rpc_client.html │ │ │ ├── rpc_server.dats │ │ │ ├── test2_client.dats │ │ │ ├── test2_client.html │ │ │ ├── test2_prot.sats │ │ │ ├── test2_server.dats │ │ │ ├── test3_client.dats │ │ │ ├── test3_client.html │ │ │ ├── test3_prot.sats │ │ │ ├── test3_server.dats │ │ │ ├── test_client.dats │ │ │ ├── test_client.html │ │ │ ├── test_prot.sats │ │ │ └── test_server.dats │ │ ├── mylibies.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── basics_js.sats │ ├── mylibies.hats │ └── output │ │ ├── .keeper │ │ ├── Bacon.js │ │ └── DATS │ │ │ └── .keeper │ │ └── DATS │ │ ├── .keeper │ │ └── ML │ │ └── .keeper ├── libatscc2php │ └── ATS2-0.3.2 │ │ ├── CATS │ │ ├── PHParray_cats.php │ │ ├── PHParref_cats.php │ │ ├── PHPref_cats.php │ │ ├── basics_cats.php │ │ ├── bool_cats.php │ │ ├── filebas_cats.php │ │ ├── float_cats.php │ │ ├── integer_cats.php │ │ ├── print_cats.php │ │ └── string_cats.php │ │ ├── DATS │ │ ├── BUCS320 │ │ │ ├── GraphSearch │ │ │ │ ├── GraphSearch_bfs.dats │ │ │ │ └── GraphSearch_dfs.dats │ │ │ └── parcomb │ │ │ │ └── parcomb.dats │ │ ├── ML │ │ │ ├── array0.dats │ │ │ ├── list0.dats │ │ │ ├── matrix0.dats │ │ │ └── option0.dats │ │ ├── PHParray.dats │ │ ├── PHParref.dats │ │ ├── arrayref.dats │ │ ├── basics.dats │ │ ├── filebas.dats │ │ ├── funarray.dats │ │ ├── intrange.dats │ │ ├── list.dats │ │ ├── list_vt.dats │ │ ├── matrixref.dats │ │ ├── option.dats │ │ ├── print.dats │ │ ├── qlistref.dats │ │ ├── reference.dats │ │ ├── slistref.dats │ │ ├── stream.dats │ │ └── stream_vt.dats │ │ ├── Makefile │ │ ├── SATS │ │ ├── BUCS320 │ │ │ ├── parcomb.sats │ │ │ └── words.sats │ │ ├── ML │ │ │ ├── array0.sats │ │ │ ├── list0.sats │ │ │ ├── matrix0.sats │ │ │ └── option0.sats │ │ ├── PHParray.sats │ │ ├── PHParref.sats │ │ ├── PHPref.sats │ │ ├── arrayref.sats │ │ ├── bool.sats │ │ ├── char.sats │ │ ├── filebas.sats │ │ ├── float.sats │ │ ├── funarray.sats │ │ ├── integer.sats │ │ ├── intrange.sats │ │ ├── list.sats │ │ ├── list_vt.sats │ │ ├── matrixref.sats │ │ ├── option.sats │ │ ├── print.sats │ │ ├── qlistref.sats │ │ ├── reference.sats │ │ ├── slistref.sats │ │ ├── stream.sats │ │ ├── stream_vt.sats │ │ └── string.sats │ │ ├── TEST │ │ ├── BUCS320 │ │ │ └── GraphSearch │ │ │ │ ├── GameOf24Play_bfs.dats │ │ │ │ ├── GameOf24Play_dfs.dats │ │ │ │ ├── Makefile │ │ │ │ ├── QueenPuzzle_bfs.dats │ │ │ │ └── QueenPuzzle_dfs.dats │ │ ├── Makefile │ │ ├── test01.dats │ │ ├── test02.dats │ │ ├── test03.dats │ │ └── test04.dats │ │ ├── basics_php.sats │ │ ├── mylibies.hats │ │ ├── output │ │ └── DATS │ │ │ ├── .keeper │ │ │ └── ML │ │ │ └── .keeper │ │ └── staloadall.hats ├── libatscc2pl │ └── ATS2-0.3.2 │ │ ├── CATS │ │ ├── PLarray_cats.pl │ │ ├── basics_cats.pl │ │ ├── bool_cats.pl │ │ ├── float_cats.pl │ │ ├── integer_cats.pl │ │ ├── print_cats.pl │ │ └── string_cats.pl │ │ ├── DATS │ │ ├── BUCS320 │ │ │ └── GraphSearch │ │ │ │ ├── GraphSearch_bfs.dats │ │ │ │ └── GraphSearch_dfs.dats │ │ ├── ML │ │ │ ├── array0.dats │ │ │ ├── list0.dats │ │ │ └── option0.dats │ │ ├── funarray.dats │ │ ├── intrange.dats │ │ ├── list.dats │ │ ├── list_vt.dats │ │ ├── option.dats │ │ ├── print.dats │ │ ├── qlistref.dats │ │ ├── reference.dats │ │ ├── slistref.dats │ │ ├── stream.dats │ │ └── stream_vt.dats │ │ ├── Makefile │ │ ├── SATS │ │ ├── ML │ │ │ ├── array0.sats │ │ │ ├── list0.sats │ │ │ └── option0.sats │ │ ├── PLarray.sats │ │ ├── arrayref.sats │ │ ├── bool.sats │ │ ├── filebas.sats │ │ ├── float.sats │ │ ├── funarray.sats │ │ ├── integer.sats │ │ ├── intrange.sats │ │ ├── list.sats │ │ ├── list_vt.sats │ │ ├── option.sats │ │ ├── print.sats │ │ ├── qlistref.sats │ │ ├── reference.sats │ │ ├── slistref.sats │ │ ├── stream.sats │ │ ├── stream_vt.sats │ │ └── string.sats │ │ ├── TEST │ │ ├── BUCS320 │ │ │ └── GraphSearch │ │ │ │ ├── GameOf24Play_bfs.dats │ │ │ │ ├── GameOf24Play_dfs.dats │ │ │ │ ├── Makefile │ │ │ │ ├── QueenPuzzle_bfs.dats │ │ │ │ └── QueenPuzzle_dfs.dats │ │ ├── Makefile │ │ ├── test01.dats │ │ ├── test02.dats │ │ └── test03.dats │ │ ├── basics_pl.sats │ │ ├── output │ │ ├── .keeper │ │ └── DATS │ │ │ ├── .keeper │ │ │ └── ML │ │ │ └── .keeper │ │ └── staloadall.hats ├── libatscc2py3 │ └── ATS2-0.3.2 │ │ ├── CATS │ │ ├── PYGAME │ │ │ └── pygame_cats.py │ │ ├── PYGAME_pygame_cats.py │ │ ├── PYLIBC │ │ │ ├── datetime_cats.py │ │ │ └── random_cats.py │ │ ├── PYLIBC_datetime_cats.py │ │ ├── PYLIBC_random_cats.py │ │ ├── PYlist_cats.py │ │ ├── basics_cats.py │ │ ├── bool_cats.py │ │ ├── char_cats.py │ │ ├── filebas_cats.py │ │ ├── float_cats.py │ │ ├── integer_cats.py │ │ ├── print_cats.py │ │ ├── reference_cats.py │ │ └── string_cats.py │ │ ├── DATS │ │ ├── BUCS320 │ │ │ ├── GraphSearch │ │ │ │ ├── GraphSearch_bfs.dats │ │ │ │ └── GraphSearch_dfs.dats │ │ │ └── parcomb │ │ │ │ └── parcomb.dats │ │ ├── ML │ │ │ ├── array0.dats │ │ │ ├── list0.dats │ │ │ └── option0.dats │ │ ├── PYlist.dats │ │ ├── arrayref.dats │ │ ├── basics.dats │ │ ├── funarray.dats │ │ ├── gprint.dats │ │ ├── intrange.dats │ │ ├── list.dats │ │ ├── list_vt.dats │ │ ├── matrixref.dats │ │ ├── option.dats │ │ ├── print.dats │ │ ├── qlistref.dats │ │ ├── reference.dats │ │ ├── slistref.dats │ │ ├── stream.dats │ │ ├── stream_vt.dats │ │ └── string.dats │ │ ├── Makefile │ │ ├── SATS │ │ ├── BUCS320 │ │ │ ├── parcomb.sats │ │ │ └── words.sats │ │ ├── ML │ │ │ ├── array0.sats │ │ │ ├── list0.sats │ │ │ └── option0.sats │ │ ├── PYGAME │ │ │ └── pygame.sats │ │ ├── PYLIBC │ │ │ ├── datetime.sats │ │ │ └── random.sats │ │ ├── PYlist.sats │ │ ├── arrayref.sats │ │ ├── bool.sats │ │ ├── char.sats │ │ ├── filebas.sats │ │ ├── float.sats │ │ ├── funarray.sats │ │ ├── gprint.sats │ │ ├── integer.sats │ │ ├── intrange.sats │ │ ├── list.sats │ │ ├── list_vt.sats │ │ ├── matrixref.sats │ │ ├── option.sats │ │ ├── print.sats │ │ ├── qlistref.sats │ │ ├── reference.sats │ │ ├── slistref.sats │ │ ├── stream.sats │ │ ├── stream_vt.sats │ │ └── string.sats │ │ ├── TEST │ │ ├── BUCS320 │ │ │ └── GraphSearch │ │ │ │ ├── GameOf24Play_bfs.dats │ │ │ │ ├── GameOf24Play_dfs.dats │ │ │ │ ├── Makefile │ │ │ │ ├── QueenPuzzle_bfs.dats │ │ │ │ └── QueenPuzzle_dfs.dats │ │ ├── Makefile │ │ ├── PYGAME │ │ │ ├── Makefile │ │ │ └── test01.dats │ │ ├── PYLIBC │ │ │ ├── Makefile │ │ │ └── test01.dats │ │ ├── test01.dats │ │ └── test02.dats │ │ ├── basics_py.sats │ │ ├── output │ │ └── DATS │ │ │ ├── .keeper │ │ │ └── ML │ │ │ └── .keeper │ │ └── staloadall.hats ├── libatscc2r34 │ ├── CATS │ │ ├── R34dframe_cats.R │ │ ├── R34factor_cats.R │ │ ├── R34matrix_cats.R │ │ ├── R34vector_cats.R │ │ ├── basics_cats.R │ │ ├── bool_cats.R │ │ ├── float_cats.R │ │ └── integer_cats.R │ ├── DATS │ │ ├── ML │ │ │ ├── list0.dats │ │ │ └── option0.dats │ │ ├── R34dframe.dats │ │ ├── R34matrix.dats │ │ ├── R34vector.dats │ │ ├── intrange.dats │ │ ├── list.dats │ │ ├── list_vt.dats │ │ ├── option.dats │ │ ├── stream.dats │ │ └── stream_vt.dats │ ├── Makefile │ ├── SATS │ │ ├── ML │ │ │ ├── list0.sats │ │ │ └── option0.sats │ │ ├── R34dframe.sats │ │ ├── R34factor.sats │ │ ├── R34matrix.sats │ │ ├── R34vector.sats │ │ ├── bool.sats │ │ ├── filebas.sats │ │ ├── float.sats │ │ ├── integer.sats │ │ ├── intrange.sats │ │ ├── list.sats │ │ ├── list_vt.sats │ │ ├── option.sats │ │ ├── print.sats │ │ ├── stream.sats │ │ ├── stream_vt.sats │ │ └── string.sats │ ├── basics_r34.sats │ ├── mylibies.hats │ └── output │ │ ├── .keeper │ │ └── DATS │ │ ├── .keeper │ │ └── ML │ │ └── .keeper └── libatscc2scm │ └── ATS2-0.3.2 │ ├── CATS │ ├── SCMlist_cats.scm │ ├── SCMvector_cats.scm │ ├── basics_cats.scm │ ├── bool_cats.scm │ ├── filebas_cats.scm │ ├── float_cats.scm │ ├── integer_cats.scm │ ├── print_cats.scm │ └── reference_cats.scm │ ├── DATS │ ├── BUCS320 │ │ └── GraphSearch │ │ │ ├── GraphSearch_bfs.dats │ │ │ └── GraphSearch_dfs.dats │ ├── ML │ │ ├── array0.dats │ │ ├── list0.dats │ │ └── option0.dats │ ├── SCMlist.dats │ ├── basics.dats │ ├── funarray.dats │ ├── intrange.dats │ ├── list.dats │ ├── list_vt.dats │ ├── option.dats │ ├── print.dats │ ├── qlistref.dats │ ├── reference.dats │ ├── slistref.dats │ ├── stream.dats │ └── stream_vt.dats │ ├── Makefile │ ├── SATS │ ├── ML │ │ ├── array0.sats │ │ ├── list0.sats │ │ └── option0.sats │ ├── SCMlist.sats │ ├── SCMvector.sats │ ├── arrayref.sats │ ├── bool.sats │ ├── filebas.sats │ ├── float.sats │ ├── funarray.sats │ ├── integer.sats │ ├── intrange.sats │ ├── list.sats │ ├── list_vt.sats │ ├── option.sats │ ├── print.sats │ ├── qlistref.sats │ ├── reference.sats │ ├── slistref.sats │ ├── stream.sats │ └── stream_vt.sats │ ├── TEST │ ├── BUCS320 │ │ └── GraphSearch │ │ │ ├── GameOf24Play_bfs.dats │ │ │ ├── GameOf24Play_dfs.dats │ │ │ ├── Makefile │ │ │ ├── QueenPuzzle_bfs.dats │ │ │ └── QueenPuzzle_dfs.dats │ ├── Makefile │ ├── test01.dats │ └── test02.dats │ ├── basics_scm.sats │ ├── output │ ├── .keeper │ └── DATS │ │ ├── .keeper │ │ └── ML │ │ └── .keeper │ └── staloadall.hats ├── default.nix ├── doc ├── BOOK │ ├── ATS-for-APUE3 │ │ ├── ATEXT │ │ │ └── ats-for-apue3.dats │ │ ├── CHAP_FILE_IO │ │ │ └── main.atxt │ │ ├── CODE │ │ │ ├── APUE3-1-3.dats │ │ │ ├── APUE3-1-4.dats │ │ │ ├── Makefile │ │ │ └── apue.sats │ │ ├── Makefile │ │ ├── Makefile_chap │ │ ├── README │ │ ├── bookinfo.db │ │ ├── main.db │ │ └── preface.atxt │ ├── ATS2FUNCRASH │ │ ├── ACKNOWLEDGE.txt │ │ ├── HTML │ │ │ ├── .gitignore │ │ │ ├── .keeper │ │ │ ├── HTMLTOC │ │ │ │ └── assets │ │ │ │ │ ├── ATS2FPCRASH-BOOK.css │ │ │ │ │ └── ATS2FPCRASH-BOOK.js │ │ │ ├── Makefile │ │ │ ├── assets │ │ │ │ └── ATS2FPCRASH-BOOK.css │ │ │ ├── htmltoc.dats │ │ │ ├── mylib_atxt.html │ │ │ └── synhilit.dats │ │ ├── LECTURE │ │ │ ├── 10 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ └── lecture10.dats │ │ │ │ └── main.atxt │ │ │ ├── 11 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ └── lecture11.dats │ │ │ │ └── main.atxt │ │ │ ├── 12 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Sieve.dats │ │ │ │ │ ├── Sieve.html │ │ │ │ │ └── lecture12.dats │ │ │ │ └── main.atxt │ │ │ ├── 01 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── compiling.dats │ │ │ │ │ └── libaccessing.dats │ │ │ │ └── main.atxt │ │ │ ├── 02 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lecture02.dats │ │ │ │ │ └── multable.dats │ │ │ │ └── main.atxt │ │ │ ├── 03-10 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Sierpinski.dats │ │ │ │ │ └── Sierpinski.html │ │ │ │ └── main.atxt │ │ │ ├── 03 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ └── lecture03.dats │ │ │ │ └── main.atxt │ │ │ ├── 04-10 │ │ │ │ ├── CODE │ │ │ │ │ ├── DigitClock.dats │ │ │ │ │ ├── DigitClock.html │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Sierpinski.dats │ │ │ │ │ └── Sierpinski.html │ │ │ │ └── main.atxt │ │ │ ├── 04 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lecture04.dats │ │ │ │ │ ├── multable.dats │ │ │ │ │ └── multable.html │ │ │ │ └── main.atxt │ │ │ ├── 05 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ └── lecture05.dats │ │ │ │ └── main.atxt │ │ │ ├── 06-10 │ │ │ │ ├── CODE │ │ │ │ │ ├── Factorial.dats │ │ │ │ │ ├── Factorial_dats.php │ │ │ │ │ └── Makefile │ │ │ │ └── main.atxt │ │ │ ├── 06-20 │ │ │ │ ├── CODE │ │ │ │ │ ├── Factorial.dats │ │ │ │ │ ├── Factorial.html │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── QueenPuzzle.dats │ │ │ │ │ └── QueenPuzzle.html │ │ │ │ └── main.atxt │ │ │ ├── 06 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── QueenPuzzle.dats │ │ │ │ │ └── lecture06.dats │ │ │ │ └── main.atxt │ │ │ ├── 07-10 │ │ │ │ ├── CODE │ │ │ │ │ ├── Game-of-24-js.dats │ │ │ │ │ ├── Game-of-24.dats │ │ │ │ │ ├── Game-of-24.html │ │ │ │ │ └── Makefile │ │ │ │ └── main.atxt │ │ │ ├── 07 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Permute.dats │ │ │ │ │ ├── Permute.html │ │ │ │ │ └── lecture07.dats │ │ │ │ └── main.atxt │ │ │ ├── 08-10 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ └── MonteCarlo.dats │ │ │ │ └── main.atxt │ │ │ ├── 08 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ └── lecture08.dats │ │ │ │ └── main.atxt │ │ │ ├── 09 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ └── lecture09.dats │ │ │ │ └── main.atxt │ │ │ ├── 10-10 │ │ │ │ ├── CODE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── QueenPuzzle.dats │ │ │ │ │ └── QueenPuzzle.html │ │ │ │ └── main.atxt │ │ │ ├── 12-10 │ │ │ │ ├── CODE │ │ │ │ │ ├── HanoiTowers.dats │ │ │ │ │ ├── HanoiTowers.html │ │ │ │ │ └── Makefile │ │ │ │ └── main.atxt │ │ │ ├── MYLIB │ │ │ │ ├── DOCUGEN │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile_build │ │ │ │ │ ├── mylib.arec │ │ │ │ │ ├── mylib_atexting.dats │ │ │ │ │ ├── mylib_dats.atxt │ │ │ │ │ └── mylib_html.atxt │ │ │ │ ├── mylib-2017-10-23.dats │ │ │ │ ├── mylib.dats │ │ │ │ └── mylib_atxt.dats │ │ │ └── Makefile_lect │ │ ├── MYTEXT │ │ │ ├── Makefile │ │ │ ├── ats2funcrash.dats │ │ │ ├── bin │ │ │ │ └── .keeper │ │ │ └── mytexting.dats │ │ ├── Makefile │ │ ├── README.md │ │ ├── bookinfo.db │ │ ├── main.db │ │ ├── mydocbook.dsl │ │ └── preface.atxt │ ├── ATS2TUTORIAL │ │ ├── .keeper │ │ ├── ACKNOWLEDGE.txt │ │ ├── CHAP_ARRAYREF │ │ │ └── main.atxt │ │ ├── CHAP_ARRSZREF │ │ │ └── main.atxt │ │ ├── CHAP_BRKTOVERLD │ │ │ └── main.atxt │ │ ├── CHAP_CLOPTR │ │ │ └── main.atxt │ │ ├── CHAP_CODEGEN2 │ │ │ └── main.atxt │ │ ├── CHAP_DATATYPES │ │ │ └── main.atxt │ │ ├── CHAP_DOTOVERLD │ │ │ └── main.atxt │ │ ├── CHAP_DYNLOAD │ │ │ └── main.atxt │ │ ├── CHAP_EXCEPTION │ │ │ └── main.atxt │ │ ├── CHAP_EXTVAR │ │ │ └── main.atxt │ │ ├── CHAP_FILEINCL │ │ │ └── main.atxt │ │ ├── CHAP_FILENAME │ │ │ └── main.atxt │ │ ├── CHAP_FIXITY │ │ │ └── main.atxt │ │ ├── CHAP_FUNSETMAP │ │ │ └── main.atxt │ │ ├── CHAP_HASHTABLE │ │ │ └── main.atxt │ │ ├── CHAP_HORDFUN │ │ │ └── main.atxt │ │ ├── CHAP_LIST │ │ │ └── main.atxt │ │ ├── CHAP_LIST_VT │ │ │ └── main.atxt │ │ ├── CHAP_MATRIXREF │ │ │ └── main.atxt │ │ ├── CHAP_MTRXSZREF │ │ │ └── main.atxt │ │ ├── CHAP_RECURSION │ │ │ └── main.atxt │ │ ├── CHAP_REFERENCE │ │ │ └── main.atxt │ │ ├── CHAP_STALOAD │ │ │ └── main.atxt │ │ ├── CHAP_STKCLO │ │ │ └── main.atxt │ │ ├── CHAP_STREAM │ │ │ └── main.atxt │ │ ├── CHAP_STREAM_VT │ │ │ └── main.atxt │ │ ├── CHAP_SYNCLR │ │ │ └── main.atxt │ │ ├── CHAP_TAILREC │ │ │ └── main.atxt │ │ ├── CHAP_TUPREC_1 │ │ │ └── main.atxt │ │ ├── CODE │ │ │ ├── .htaccess │ │ │ ├── ATS2TUTORIAL-CODE.html │ │ │ ├── ATS2TUTORIAL-CODE.php │ │ │ ├── CHAP_CODEGEN2 │ │ │ │ ├── Makefile │ │ │ │ ├── expr.dats │ │ │ │ └── expr.sats │ │ │ ├── CHAP_DYNLOAD │ │ │ │ ├── foo.dats │ │ │ │ └── foo2.dats │ │ │ ├── Makefile │ │ │ ├── chap_arrayref.dats │ │ │ ├── chap_arrszref.dats │ │ │ ├── chap_brktoverld.dats │ │ │ ├── chap_cloptr.dats │ │ │ ├── chap_datatypes.dats │ │ │ ├── chap_dotoverld.dats │ │ │ ├── chap_exception.dats │ │ │ ├── chap_extvar.dats │ │ │ ├── chap_funsetmap_map.dats │ │ │ ├── chap_funsetmap_set.dats │ │ │ ├── chap_hashtable.dats │ │ │ ├── chap_hashtable2.dats │ │ │ ├── chap_hordfun.dats │ │ │ ├── chap_list.dats │ │ │ ├── chap_list_vt.dats │ │ │ ├── chap_matrixref.dats │ │ │ ├── chap_mtrxszref.dats │ │ │ ├── chap_recursion.dats │ │ │ ├── chap_reference.dats │ │ │ ├── chap_stkclo.dats │ │ │ ├── chap_stream.dats │ │ │ ├── chap_stream_vt.dats │ │ │ ├── chap_tailrec.dats │ │ │ ├── chap_tuprec_1.dats │ │ │ ├── fact.dats │ │ │ └── fact_dats.html │ │ ├── HTML │ │ │ ├── .gitignore │ │ │ ├── ATS2TUTORIAL-BOOK-onechunk.html │ │ │ ├── ATS2TUTORIAL-BOOK.html │ │ │ ├── HTMLTOC │ │ │ │ ├── ATS2TUTORIAL-BOOK.html │ │ │ │ ├── assets │ │ │ │ │ ├── ATS2TUTORIAL-BOOK.css │ │ │ │ │ └── ATS2TUTORIAL-BOOK.js │ │ │ │ └── index.html │ │ │ ├── Makefile │ │ │ ├── assets │ │ │ │ └── ATS2TUTORIAL-BOOK.css │ │ │ ├── htmltoc.dats │ │ │ └── synhilit.dats │ │ ├── MYTEXT │ │ │ ├── Makefile │ │ │ ├── ats2tutorial.dats │ │ │ ├── bin │ │ │ │ └── .keeper │ │ │ └── mytexting.dats │ │ ├── Makefile │ │ ├── Makefile_chap │ │ ├── PDF │ │ │ └── main_epub.pdf │ │ ├── TEMP │ │ │ └── .keeper │ │ ├── bookinfo.db │ │ ├── main.db │ │ ├── mydocbook.dsl │ │ └── preface.atxt │ └── INT2PROGINATS │ │ ├── .keeper │ │ ├── ACKNOWLEDGE.txt │ │ ├── CHAP_ABSVTYPE │ │ └── main.atxt │ │ ├── CHAP_CINTERACT │ │ └── main.atxt │ │ ├── CHAP_DATATYPE │ │ └── main.atxt │ │ ├── CHAP_DATAVIEW │ │ └── main.atxt │ │ ├── CHAP_DATAVTYPE │ │ └── main.atxt │ │ ├── CHAP_DEPDTREF │ │ └── main.atxt │ │ ├── CHAP_DEPTYPES │ │ └── main.atxt │ │ ├── CHAP_EFFECTFUL │ │ └── main.atxt │ │ ├── CHAP_FNTMPINT │ │ └── main.atxt │ │ ├── CHAP_FUNCTION │ │ └── main.atxt │ │ ├── CHAP_MODULARITY │ │ └── main.atxt │ │ ├── CHAP_POLYMORPH │ │ └── main.atxt │ │ ├── CHAP_PRGTHMPRV │ │ └── main.atxt │ │ ├── CHAP_PROGELEM │ │ └── main.atxt │ │ ├── CHAP_START │ │ └── main.atxt │ │ ├── CHAP_THMPRVING │ │ └── main.atxt │ │ ├── CHAP_VVTINTRO │ │ └── main.atxt │ │ ├── CODE │ │ ├── .INT2PROGINATS-atscntrb │ │ │ └── libats-hwxi │ │ │ │ └── testing │ │ │ │ ├── DATS │ │ │ │ └── randgen.dats │ │ │ │ └── SATS │ │ │ │ └── randgen.sats │ │ ├── .htaccess │ │ ├── CHAP_ABSVTYPE │ │ │ ├── Makefile │ │ │ ├── channel_vt.dats │ │ │ ├── circbuf.dats │ │ │ ├── circbuf.sats │ │ │ ├── circbuf2.dats │ │ │ ├── iterator.dats │ │ │ ├── mergeSort.dats │ │ │ ├── shared_vt.dats │ │ │ └── timer.dats │ │ ├── CHAP_CINTERACT │ │ │ ├── ArrayCopyFromList.dats │ │ │ ├── Makefile │ │ │ ├── StaticAllocList.dats │ │ │ ├── extfcall.dats │ │ │ ├── fact.dats │ │ │ ├── fact2.c │ │ │ ├── factext.dats │ │ │ ├── misc.dats │ │ │ └── strcmp.dats │ │ ├── CHAP_DATATYPE │ │ │ ├── JS │ │ │ │ └── intexp.dats │ │ │ ├── Makefile │ │ │ ├── bstree.dats │ │ │ ├── intexp.dats │ │ │ └── misc.dats │ │ ├── CHAP_DATAVIEW │ │ │ ├── Makefile │ │ │ ├── array.dats │ │ │ ├── disjview.dats │ │ │ ├── optview.dats │ │ │ ├── slist.cats │ │ │ ├── slist.dats │ │ │ └── strbuf.dats │ │ ├── CHAP_DATAVTYPE │ │ │ ├── Makefile │ │ │ ├── bstree_vt.dats │ │ │ ├── insertionSort.dats │ │ │ ├── list_vt.dats │ │ │ ├── mergeSort.dats │ │ │ ├── misc.dats │ │ │ ├── quickSort.dats │ │ │ └── rbtree.dats │ │ ├── CHAP_DEPDTREF │ │ │ ├── Makefile │ │ │ ├── listfuns.dats │ │ │ ├── mergesort.dats │ │ │ ├── misc.dats │ │ │ └── rbtree.dats │ │ ├── CHAP_DEPTYPES │ │ │ ├── Makefile │ │ │ ├── bsearch_arr.dats │ │ │ └── misc.dats │ │ ├── CHAP_EFFECTFUL │ │ │ ├── JS │ │ │ │ └── counter.dats │ │ │ ├── Makefile │ │ │ ├── brauntest.dats │ │ │ ├── counter.dats │ │ │ ├── echoline.dats │ │ │ ├── hello.dats │ │ │ ├── insort.dats │ │ │ ├── misc.dats │ │ │ ├── montecarlo.dats │ │ │ └── permord.dats │ │ ├── CHAP_FNTMPINT │ │ │ ├── Makefile │ │ │ ├── gnumber.dats │ │ │ ├── intfloat.dats │ │ │ ├── list_map.dats │ │ │ ├── loopcons.dats │ │ │ ├── misc.dats │ │ │ └── myprint.dats │ │ ├── CHAP_FUNCTION │ │ │ ├── JS │ │ │ │ ├── acker.dats │ │ │ │ ├── bsearch.dats │ │ │ │ ├── coinchange.dats │ │ │ │ ├── queens.dats │ │ │ │ └── twice.dats │ │ │ ├── Makefile │ │ │ ├── acker.dats │ │ │ ├── bsearch.dats │ │ │ ├── coinchange.dats │ │ │ ├── misc.dats │ │ │ ├── queens.dats │ │ │ └── twice.dats │ │ ├── CHAP_MODULARITY │ │ │ ├── Makefile │ │ │ ├── acker.dats │ │ │ ├── acker.sats │ │ │ ├── acker2.dats │ │ │ ├── acker3.dats │ │ │ ├── intset.dats │ │ │ ├── intset.sats │ │ │ ├── listeq.dats │ │ │ ├── misc.dats │ │ │ ├── ratfun.dats │ │ │ ├── ratfun.sats │ │ │ ├── ratmod.dats │ │ │ ├── ratmod.sats │ │ │ ├── test_acker.dats │ │ │ ├── test_acker2.dats │ │ │ ├── test_acker3.dats │ │ │ ├── test_intset.dats │ │ │ ├── test_ratfun.dats │ │ │ └── test_ratmod.dats │ │ ├── CHAP_POLYMORPH │ │ │ ├── JS │ │ │ │ ├── listfuns.dats │ │ │ │ ├── mergesort.dats │ │ │ │ └── misc.dats │ │ │ ├── Makefile │ │ │ ├── listfuns.dats │ │ │ ├── mergesort.dats │ │ │ └── misc.dats │ │ ├── CHAP_PRGTHMPRV │ │ │ ├── JS │ │ │ │ ├── ifact.dats │ │ │ │ └── ifact23.dats │ │ │ ├── Makefile │ │ │ ├── fastexp.dats │ │ │ ├── fastexp.sats │ │ │ ├── ifact.dats │ │ │ ├── ifact23.dats │ │ │ ├── matget.dats │ │ │ ├── misc.dats │ │ │ └── test_fastexp.dats │ │ ├── CHAP_PROGELEM │ │ │ ├── Makefile │ │ │ └── misc.dats │ │ ├── CHAP_START │ │ │ ├── JS │ │ │ │ ├── hello.dats │ │ │ │ └── queens.dats │ │ │ ├── Makefile │ │ │ ├── Makefile_template │ │ │ ├── hello.dats │ │ │ ├── mytest.dats │ │ │ └── queens.dats │ │ ├── CHAP_THMPRVING │ │ │ ├── Makefile │ │ │ ├── brauntree.dats │ │ │ ├── misc.dats │ │ │ ├── sqrt2_irrat.dats │ │ │ └── tree.dats │ │ ├── CHAP_VVTINTRO │ │ │ ├── Makefile │ │ │ ├── atview.dats │ │ │ ├── cloptr.dats │ │ │ ├── dotprod.dats │ │ │ └── stkclo.dats │ │ ├── INT2PROGINATS-CODE.php │ │ └── Makefile │ │ ├── HTML │ │ ├── .gitignore │ │ ├── HTMLTOC │ │ │ ├── INT2PROGINATS-BOOK.html │ │ │ ├── assets │ │ │ │ ├── INT2PROGINATS-BOOK.css │ │ │ │ └── INT2PROGINATS-BOOK.js │ │ │ └── index.html │ │ ├── INT2PROGINATS-BOOK-onechunk.html │ │ ├── INT2PROGINATS-BOOK.html │ │ ├── Makefile │ │ ├── assets │ │ │ └── INT2PROGINATS-BOOK.css │ │ ├── htmltoc.dats │ │ ├── index.html │ │ └── synhilit.dats │ │ ├── INTPROGINATS-2013-03-24 │ │ ├── ACKNOWLEDGMENTS.txt │ │ ├── CHAPTER_ABSVTYPES │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_CINTERACT │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_CONVENIENCE │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_DATATYPES │ │ │ ├── main │ │ │ ├── main.atxt │ │ │ ├── main.db │ │ │ ├── main_atxt.dats │ │ │ └── main_atxt.txt │ │ ├── CHAPTER_DATAVIEWS │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_DATAVTYPES │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_DEPREFDTS │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_DEPTYPES │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_EFFECTFUL │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_EOP │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_FUNCTIONS │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_LIBRARIES │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_MODULARITY │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_POLYMORPHISM │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_PwTP │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_START │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_THMPRVING │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CHAPTER_VVTINTRO │ │ │ ├── main.atxt │ │ │ └── main.db │ │ ├── CODE │ │ │ ├── CHAPTER_ABSVTYPES │ │ │ │ ├── Makefile │ │ │ │ ├── circbuf.dats │ │ │ │ ├── circbuf.sats │ │ │ │ ├── circbuf2.dats │ │ │ │ ├── iterator.dats │ │ │ │ ├── mergesort.dats │ │ │ │ └── sobjptr.dats │ │ │ ├── CHAPTER_DATATYPES │ │ │ │ ├── Makefile │ │ │ │ └── misc.dats │ │ │ ├── CHAPTER_DATAVIEWS │ │ │ │ ├── Makefile │ │ │ │ ├── array.dats │ │ │ │ ├── optview.dats │ │ │ │ ├── quicksort.dats │ │ │ │ ├── sllst.c │ │ │ │ └── sllst.dats │ │ │ ├── CHAPTER_DATAVTYPES │ │ │ │ ├── Makefile │ │ │ │ ├── bstree_vt.dats │ │ │ │ ├── list_vt.dats │ │ │ │ ├── mergesort.dats │ │ │ │ ├── misc.dats │ │ │ │ └── rbtree.dats │ │ │ ├── CHAPTER_DEPREFDTS │ │ │ │ ├── Makefile │ │ │ │ ├── listfun.dats │ │ │ │ ├── mergesort.dats │ │ │ │ ├── misc.dats │ │ │ │ ├── ralist.dats │ │ │ │ └── rbtree.dats │ │ │ ├── CHAPTER_DEPTYPES │ │ │ │ ├── Makefile │ │ │ │ ├── bsearch_arr.dats │ │ │ │ └── misc.dats │ │ │ ├── CHAPTER_EFFECTFUL │ │ │ │ ├── Makefile │ │ │ │ ├── brauntest.dats │ │ │ │ ├── echo.dats │ │ │ │ ├── hello.dats │ │ │ │ ├── insort.dats │ │ │ │ ├── misc.dats │ │ │ │ ├── montecarlo.dats │ │ │ │ └── permord.dats │ │ │ ├── CHAPTER_EOP │ │ │ │ └── misc.dats │ │ │ ├── CHAPTER_FUNCTIONS │ │ │ │ ├── Makefile │ │ │ │ ├── bsearch.dats │ │ │ │ ├── coin.dats │ │ │ │ ├── misc.dats │ │ │ │ └── queens.dats │ │ │ ├── CHAPTER_MODULARITY │ │ │ │ ├── Makefile │ │ │ │ ├── acker.dats │ │ │ │ ├── acker.sats │ │ │ │ ├── acker2.dats │ │ │ │ ├── intmod_dbl.hats │ │ │ │ ├── intmod_int.hats │ │ │ │ ├── intset.dats │ │ │ │ ├── intset.sats │ │ │ │ ├── listeq.dats │ │ │ │ ├── misc.dats │ │ │ │ ├── ratfun_rec.dats │ │ │ │ ├── ratfun_rec.sats │ │ │ │ ├── ratfun_tmp.dats │ │ │ │ ├── ratfun_tmp.sats │ │ │ │ ├── ratmod.dats │ │ │ │ ├── ratmod.sats │ │ │ │ ├── test_acker.dats │ │ │ │ ├── test_acker2.dats │ │ │ │ ├── test_intset.dats │ │ │ │ ├── test_ratfun_rec.dats │ │ │ │ ├── test_ratfun_tmp.dats │ │ │ │ └── test_ratmod.dats │ │ │ ├── CHAPTER_POLYMORPHISM │ │ │ │ ├── Makefile │ │ │ │ ├── listfun.dats │ │ │ │ ├── mergesort.dats │ │ │ │ └── misc.dats │ │ │ ├── CHAPTER_PwTP │ │ │ │ ├── Makefile │ │ │ │ ├── fastexp.dats │ │ │ │ ├── fastexp.sats │ │ │ │ ├── ifact.dats │ │ │ │ ├── ifact23.dats │ │ │ │ ├── matget.dats │ │ │ │ ├── misc.dats │ │ │ │ └── test_fastexp.dats │ │ │ ├── CHAPTER_START │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile_template │ │ │ │ ├── hello.dats │ │ │ │ ├── mytest.dats │ │ │ │ └── queens.dats │ │ │ ├── CHAPTER_THMPRVING │ │ │ │ ├── Makefile │ │ │ │ ├── brauntree.dats │ │ │ │ ├── misc.dats │ │ │ │ └── tree.dats │ │ │ ├── CHAPTER_VVTINTRO │ │ │ │ ├── Makefile │ │ │ │ └── atview.dats │ │ │ └── Makefile │ │ ├── HTML │ │ │ └── .keeper │ │ ├── INTPROGINATSpub-update │ │ ├── Makefile │ │ ├── Makefile.chap │ │ ├── PDF │ │ │ └── .keeper │ │ ├── bookinfo.db │ │ ├── main.db │ │ ├── preface.atxt │ │ ├── proginatsatxt.dats │ │ └── references.db │ │ ├── MYTEXT │ │ ├── Makefile │ │ ├── bin │ │ │ └── .keeper │ │ ├── int2proginats.dats │ │ └── mytexting.dats │ │ ├── Makefile │ │ ├── Makefile_chap │ │ ├── PDF │ │ ├── main.epub │ │ ├── main.pdf │ │ └── main_epub.pdf │ │ ├── bookinfo.db │ │ ├── main.db │ │ ├── mydocbook.dsl │ │ └── preface.atxt ├── BUGS │ ├── Makefile │ ├── bug-2013-10-07.dats │ ├── bug-2013-10-09.dats │ ├── bug-2013-10-11-2.dats │ ├── bug-2013-10-11.dats │ ├── bug-2013-10-30-2.dats │ ├── bug-2013-10-30.dats │ ├── bug-2013-10-31.dats │ ├── bug-2013-11-01.dats │ ├── bug-2013-11-06.dats │ ├── bug-2013-11-08.dats │ ├── bug-2013-11-10.dats │ ├── bug-2013-11-29.dats │ ├── bug-2013-12-04.dats │ ├── bug-2014-02-15.dats │ ├── bug-2014-03-12.dats │ ├── bug-2014-05-05.dats │ ├── bug-2014-05-17.dats │ ├── bug-2014-10-29.dats │ ├── bug-2014-10-31.dats │ ├── bug-2014-11-14-2.dats │ ├── bug-2014-11-14.dats │ ├── bug-2015-01-03.dats │ ├── bug-2015-01-07.dats │ ├── bug-2015-01-12.dats │ ├── bug-2015-01-25.dats │ ├── bug-2015-02-22.dats │ ├── bug-2015-04-15.dats │ ├── bug-2015-04-21.dats │ ├── bug-2015-04-25.dats │ ├── bug-2015-05-13-2.dats │ ├── bug-2015-05-13.dats │ ├── bug-2015-08-04.dats │ ├── bug-2016-05-13.dats │ ├── bug-2016-06-26.dats │ ├── bug-2016-10-08.dats │ ├── bug-2017-04-16.dats │ ├── bug-2017-04-17.dats │ ├── bug-2017-05-19.dats │ ├── bug-2017-06-27.dats │ ├── bug-2018-09-16.dats │ ├── bug-2020-09-29.dats │ ├── bug-2020-10-04.dats │ └── bug-2020-10-14.dats ├── DISTRIB │ ├── ATEXT │ │ ├── atslib_libats.atxt │ │ ├── atslib_libats_ATS1.atxt │ │ ├── atslib_libats_ATS2.atxt │ │ ├── atslib_libats_BUCS320.atxt │ │ ├── atslib_libats_ML.atxt │ │ ├── atslib_libats_libc.atxt │ │ ├── atslib_prelude.atxt │ │ ├── ccomp_atslib.atxt │ │ ├── ccomp_runtime.atxt │ │ ├── contrib_ats2cpp.atxt │ │ ├── contrib_atscc2clj.atxt │ │ ├── contrib_atscc2js.atxt │ │ ├── contrib_atscc2php.atxt │ │ ├── contrib_atscc2pl.atxt │ │ ├── contrib_atscc2py3.atxt │ │ ├── contrib_atscc2r34.atxt │ │ ├── contrib_atscc2scm.atxt │ │ ├── contrib_atscntrb.atxt │ │ ├── contrib_extsolve.atxt │ │ ├── contrib_extsolve_smt2.atxt │ │ ├── contrib_extsolve_z3.atxt │ │ ├── contrib_libatscc.atxt │ │ ├── contrib_libatscc2clj.atxt │ │ ├── contrib_libatscc2js.atxt │ │ ├── contrib_libatscc2php.atxt │ │ ├── contrib_libatscc2pl.atxt │ │ ├── contrib_libatscc2py3.atxt │ │ ├── contrib_libatscc2r34.atxt │ │ ├── contrib_libatscc2scm.atxt │ │ ├── contrib_parsemit.atxt │ │ ├── doc_example_atslib.atxt │ │ ├── doc_example_intro.atxt │ │ ├── doc_example_misc.atxt │ │ ├── doc_example_pcpv.atxt │ │ ├── npm_utils_contrib_atscntrb.atxt │ │ ├── npm_utils_contrib_libats_hwxi.atxt │ │ ├── patscontrib_GTK.atxt │ │ ├── patscontrib_HTML-emscripten.atxt │ │ ├── patscontrib_HTML-emscripten_canvas-2d.atxt │ │ ├── patscontrib_JNI.atxt │ │ ├── patscontrib_OpenSSL.atxt │ │ ├── patscontrib_SDL2.atxt │ │ ├── patscontrib_glib.atxt │ │ ├── patscontrib_kernelats.atxt │ │ ├── patscontrib_libats_hwxi.atxt │ │ ├── patscontrib_libats_hwxi_teaching.atxt │ │ ├── patscontrib_libatscc.atxt │ │ ├── patscontrib_zeromq.atxt │ │ ├── patsopt_src.atxt │ │ ├── patsopt_src_cboot.atxt │ │ ├── utils_atscc.atxt │ │ ├── utils_emacs.atxt │ │ ├── utils_libatsopt.atxt │ │ └── utils_myatscc.atxt │ ├── ATS-Postiats-contrib │ │ └── contrib │ │ │ ├── GTK │ │ │ ├── CATS │ │ │ │ ├── .keeper │ │ │ │ ├── gdk │ │ │ │ │ └── .keeper │ │ │ │ └── gtk │ │ │ │ │ └── .keeper │ │ │ ├── DATS │ │ │ │ └── .keeper │ │ │ └── SATS │ │ │ │ ├── .keeper │ │ │ │ ├── gdk │ │ │ │ └── .keeper │ │ │ │ └── gtk │ │ │ │ └── .keeper │ │ │ ├── HTML-emscripten │ │ │ ├── CATS │ │ │ │ └── .keeper │ │ │ ├── DATS │ │ │ │ └── .keeper │ │ │ ├── JS │ │ │ │ └── .keeper │ │ │ ├── SATS │ │ │ │ └── .keeper │ │ │ └── canvas-2d │ │ │ │ ├── .keeper │ │ │ │ ├── JS │ │ │ │ └── .keeper │ │ │ │ ├── SATS │ │ │ │ └── .keeper │ │ │ │ └── TEST │ │ │ │ └── .keeper │ │ │ ├── JNI │ │ │ ├── CATS │ │ │ │ └── .keeper │ │ │ ├── DATS │ │ │ │ └── .keeper │ │ │ ├── Java │ │ │ │ └── .keeper │ │ │ └── SATS │ │ │ │ └── .keeper │ │ │ ├── OpenSSL │ │ │ ├── CATS │ │ │ │ └── .keeper │ │ │ ├── DATS │ │ │ │ └── .keeper │ │ │ └── SATS │ │ │ │ └── .keeper │ │ │ ├── SDL2 │ │ │ ├── CATS │ │ │ │ └── .keeper │ │ │ └── SATS │ │ │ │ └── .keeper │ │ │ ├── glib │ │ │ ├── CATS │ │ │ │ └── .keeper │ │ │ ├── DATS │ │ │ │ └── .keeper │ │ │ └── SATS │ │ │ │ ├── .keeper │ │ │ │ ├── glib │ │ │ │ └── .keeper │ │ │ │ └── gobject │ │ │ │ └── .keeper │ │ │ ├── hiredis │ │ │ ├── CATS │ │ │ │ └── .keeper │ │ │ ├── DATS │ │ │ │ └── .keeper │ │ │ └── SATS │ │ │ │ └── .keeper │ │ │ ├── kernelats │ │ │ └── prelude │ │ │ │ ├── .keeper │ │ │ │ └── CATS │ │ │ │ └── .keeper │ │ │ ├── libats- │ │ │ └── hwxi │ │ │ │ └── teaching │ │ │ │ ├── BUCS │ │ │ │ └── DATS │ │ │ │ │ └── .keeper │ │ │ │ ├── fileAsLock │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ └── SATS │ │ │ │ │ └── .keeper │ │ │ │ ├── mydraw │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ ├── JS │ │ │ │ │ └── .keeper │ │ │ │ └── SATS │ │ │ │ │ └── .keeper │ │ │ │ └── mythread │ │ │ │ ├── DATS │ │ │ │ └── .keeper │ │ │ │ └── SATS │ │ │ │ └── .keeper │ │ │ ├── libatscc-0.3.2 │ │ │ └── .keeper │ │ │ └── zeromq │ │ │ ├── CATS │ │ │ └── .keeper │ │ │ ├── DATS │ │ │ └── .keeper │ │ │ └── SATS │ │ │ └── .keeper │ ├── ATS-Postiats-include │ │ ├── COPYING │ │ ├── Makefile_utils │ │ ├── README.md │ │ ├── bin │ │ │ └── .keeper │ │ ├── ccomp │ │ │ └── runtime │ │ │ │ └── .keeper │ │ ├── libats │ │ │ ├── CATS │ │ │ │ └── .keeper │ │ │ ├── ML │ │ │ │ └── CATS │ │ │ │ │ └── .keeper │ │ │ └── libc │ │ │ │ └── CATS │ │ │ │ ├── .keeper │ │ │ │ ├── arpa │ │ │ │ └── .keeper │ │ │ │ ├── gdbm │ │ │ │ └── .keeper │ │ │ │ ├── netinet │ │ │ │ └── .keeper │ │ │ │ └── sys │ │ │ │ └── .keeper │ │ ├── package.json │ │ ├── patscontrib │ │ │ ├── .keeper │ │ │ ├── GTK │ │ │ │ └── CATS │ │ │ │ │ └── .keeper │ │ │ ├── glib │ │ │ │ └── CATS │ │ │ │ │ └── .keeper │ │ │ └── zeromq │ │ │ │ └── CATS │ │ │ │ └── .keeper │ │ ├── prelude │ │ │ └── CATS │ │ │ │ └── .keeper │ │ ├── share │ │ │ ├── .keeper │ │ │ └── H │ │ │ │ └── .keeper │ │ └── utils │ │ │ ├── atscc │ │ │ ├── .keeper │ │ │ ├── BUILD │ │ │ │ └── .keeper │ │ │ ├── DATS_C │ │ │ │ ├── atscc_main_dats.c │ │ │ │ ├── atscc_print_dats.c │ │ │ │ └── patscc_dats.c │ │ │ ├── Makefile │ │ │ └── Makefile_build │ │ │ └── myatscc │ │ │ ├── .keeper │ │ │ ├── BUILD │ │ │ └── .keeper │ │ │ ├── DATS_C │ │ │ └── myatscc_all_dats.c │ │ │ ├── Makefile │ │ │ └── Makefile_build │ ├── ATS-Postiats │ │ ├── Makefile │ │ ├── Makefile_dist │ │ ├── RELEASE │ │ │ ├── .keeper │ │ │ ├── ats2-postiats-0.0.1-release.html │ │ │ ├── ats2-postiats-0.0.2-release.html │ │ │ ├── ats2-postiats-0.0.3-release.html │ │ │ ├── ats2-postiats-0.0.4-release.html │ │ │ ├── ats2-postiats-0.0.5-release.html │ │ │ ├── ats2-postiats-0.0.6-release.html │ │ │ ├── ats2-postiats-0.0.7-release.html │ │ │ ├── ats2-postiats-0.0.8-release.html │ │ │ ├── ats2-postiats-0.1.0-release.html │ │ │ ├── ats2-postiats-0.1.1-release.html │ │ │ ├── ats2-postiats-0.1.10-release.html │ │ │ ├── ats2-postiats-0.1.11-release.html │ │ │ ├── ats2-postiats-0.1.12-release.html │ │ │ ├── ats2-postiats-0.1.13-release.html │ │ │ ├── ats2-postiats-0.1.2-release.html │ │ │ ├── ats2-postiats-0.1.3-release.html │ │ │ ├── ats2-postiats-0.1.4-release.html │ │ │ ├── ats2-postiats-0.1.5-release.html │ │ │ ├── ats2-postiats-0.1.6-release.html │ │ │ ├── ats2-postiats-0.1.7-release.html │ │ │ ├── ats2-postiats-0.1.8-release.html │ │ │ ├── ats2-postiats-0.1.9-release.html │ │ │ ├── ats2-postiats-0.2.0-release.html │ │ │ ├── ats2-postiats-0.2.1-release.html │ │ │ ├── ats2-postiats-0.2.10-release.html │ │ │ ├── ats2-postiats-0.2.11-release.html │ │ │ ├── ats2-postiats-0.2.12-release.html │ │ │ ├── ats2-postiats-0.2.13-release.html │ │ │ ├── ats2-postiats-0.2.2-release.html │ │ │ ├── ats2-postiats-0.2.3-release.html │ │ │ ├── ats2-postiats-0.2.4-release.html │ │ │ ├── ats2-postiats-0.2.5-release.html │ │ │ ├── ats2-postiats-0.2.6-release.html │ │ │ ├── ats2-postiats-0.2.7-release.html │ │ │ ├── ats2-postiats-0.2.8-release.html │ │ │ ├── ats2-postiats-0.2.9-release.html │ │ │ ├── ats2-postiats-0.3.0-release.html │ │ │ ├── ats2-postiats-0.3.1-release.html │ │ │ ├── ats2-postiats-0.3.10-release.html │ │ │ ├── ats2-postiats-0.3.11-release.html │ │ │ ├── ats2-postiats-0.3.12-release.html │ │ │ ├── ats2-postiats-0.3.13-release.html │ │ │ ├── ats2-postiats-0.3.2-release.html │ │ │ ├── ats2-postiats-0.3.3-release.html │ │ │ ├── ats2-postiats-0.3.4-release.html │ │ │ ├── ats2-postiats-0.3.5-release.html │ │ │ ├── ats2-postiats-0.3.6-release.html │ │ │ ├── ats2-postiats-0.3.7-release.html │ │ │ ├── ats2-postiats-0.3.8-release.html │ │ │ ├── ats2-postiats-0.3.9-release.html │ │ │ ├── ats2-postiats-0.4.0-release.html │ │ │ ├── ats2-postiats-0.4.1-release.html │ │ │ ├── ats2-postiats-0.4.2-release.html │ │ │ └── how-to-release.txt │ │ ├── autogen.sh │ │ ├── bin │ │ │ └── .keeper │ │ ├── ccomp │ │ │ ├── atslib │ │ │ │ ├── .keeper │ │ │ │ ├── lib │ │ │ │ │ └── .keeper │ │ │ │ ├── lib32 │ │ │ │ │ └── .keeper │ │ │ │ ├── lib64 │ │ │ │ │ └── .keeper │ │ │ │ └── output │ │ │ │ │ └── .keeper │ │ │ └── runtime │ │ │ │ └── .keeper │ │ ├── config.h │ │ ├── config.mk.in │ │ ├── configure.ac │ │ ├── contrib │ │ │ ├── .keeper │ │ │ ├── ATS-extsolve-smt2 │ │ │ │ ├── .keeper │ │ │ │ ├── ATS-extsolve │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ ├── SATS │ │ │ │ │ └── .keeper │ │ │ │ └── bin │ │ │ │ │ └── .keeper │ │ │ ├── ATS-extsolve-z3 │ │ │ │ ├── .keeper │ │ │ │ ├── ATS-extsolve │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ ├── SATS │ │ │ │ │ └── .keeper │ │ │ │ └── bin │ │ │ │ │ └── .keeper │ │ │ ├── ATS-extsolve │ │ │ │ ├── .keeper │ │ │ │ ├── CATS │ │ │ │ │ └── .keeper │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ ├── SATS │ │ │ │ │ └── .keeper │ │ │ │ └── bin │ │ │ │ │ └── .keeper │ │ │ ├── CATS-atscc2clj │ │ │ │ ├── CATS-parsemit │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ └── bin │ │ │ │ │ └── .gitkeep │ │ │ ├── CATS-atscc2js │ │ │ │ ├── .keeper │ │ │ │ ├── CATS-parsemit │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ └── bin │ │ │ │ │ └── .gitkeep │ │ │ ├── CATS-atscc2php │ │ │ │ ├── .keeper │ │ │ │ ├── CATS-parsemit │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ └── bin │ │ │ │ │ └── .gitkeep │ │ │ ├── CATS-atscc2pl │ │ │ │ ├── .keeper │ │ │ │ ├── CATS-parsemit │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ └── bin │ │ │ │ │ └── .gitkeep │ │ │ ├── CATS-atscc2py3 │ │ │ │ ├── .keeper │ │ │ │ ├── CATS-parsemit │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ └── bin │ │ │ │ │ └── .gitkeep │ │ │ ├── CATS-atscc2r34 │ │ │ │ ├── .keeper │ │ │ │ ├── CATS-parsemit │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ └── bin │ │ │ │ │ └── .gitkeep │ │ │ ├── CATS-atscc2scm │ │ │ │ ├── .keeper │ │ │ │ ├── CATS-parsemit │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ └── bin │ │ │ │ │ └── .gitkeep │ │ │ ├── CATS-parsemit │ │ │ │ ├── .keeper │ │ │ │ ├── CATS │ │ │ │ │ └── .keeper │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ └── SATS │ │ │ │ │ └── .keeper │ │ │ ├── ats2cpp │ │ │ │ └── .keeper │ │ │ ├── atscntrb │ │ │ │ ├── .keeper │ │ │ │ ├── atscntrb-hx-cstream │ │ │ │ │ └── .keeper │ │ │ │ ├── atscntrb-hx-getargs │ │ │ │ │ └── .keeper │ │ │ │ ├── atscntrb-hx-globals │ │ │ │ │ └── .keeper │ │ │ │ ├── atscntrb-hx-intinf │ │ │ │ │ └── .keeper │ │ │ │ ├── atscntrb-hx-libcurl │ │ │ │ │ └── .keeper │ │ │ │ ├── atscntrb-hx-libgmp │ │ │ │ │ └── .keeper │ │ │ │ ├── atscntrb-hx-libjansson │ │ │ │ │ └── .keeper │ │ │ │ ├── atscntrb-hx-libjson-c │ │ │ │ │ └── .keeper │ │ │ │ ├── atscntrb-hx-libpcre │ │ │ │ │ └── .keeper │ │ │ │ ├── atscntrb-hx-mytesting │ │ │ │ │ └── .keeper │ │ │ │ └── atscntrb-hx-sdstring │ │ │ │ │ └── .keeper │ │ │ ├── libatscc │ │ │ │ └── .keeper │ │ │ ├── libatscc2clj │ │ │ │ └── .keeper │ │ │ ├── libatscc2js │ │ │ │ └── .keeper │ │ │ ├── libatscc2php │ │ │ │ └── .keeper │ │ │ ├── libatscc2pl │ │ │ │ └── .keeper │ │ │ ├── libatscc2py3 │ │ │ │ └── .keeper │ │ │ ├── libatscc2r34 │ │ │ │ └── .keeper │ │ │ └── libatscc2scm │ │ │ │ └── .keeper │ │ ├── doc │ │ │ └── EXAMPLE │ │ │ │ ├── ATSLIB │ │ │ │ └── .keeper │ │ │ │ ├── INTRO │ │ │ │ └── .keeper │ │ │ │ ├── MISC │ │ │ │ └── .keeper │ │ │ │ └── PCPV │ │ │ │ └── .keeper │ │ ├── install-sh │ │ ├── libats │ │ │ ├── .keeper │ │ │ ├── ATS1 │ │ │ │ ├── DATS │ │ │ │ │ └── .keeper │ │ │ │ └── SATS │ │ │ │ │ └── .keeper │ │ │ ├── ATS2 │ │ │ │ ├── DATS │ │ │ │ │ ├── .keeper │ │ │ │ │ └── fcntainer │ │ │ │ │ │ └── .keeper │ │ │ │ └── SATS │ │ │ │ │ └── .keeper │ │ │ ├── BUCS320 │ │ │ │ ├── DivideConquer │ │ │ │ │ ├── .keeper │ │ │ │ │ └── DATS │ │ │ │ │ │ └── .keeper │ │ │ │ ├── GraphSearch │ │ │ │ │ ├── .keeper │ │ │ │ │ └── DATS │ │ │ │ │ │ └── .keeper │ │ │ │ └── parcomb │ │ │ │ │ ├── .keeper │ │ │ │ │ └── DATS │ │ │ │ │ └── .keeper │ │ │ ├── CATS │ │ │ │ └── .keeper │ │ │ ├── DATS │ │ │ │ ├── .keeper │ │ │ │ ├── Number │ │ │ │ │ ├── .keeper │ │ │ │ │ └── SHARE │ │ │ │ │ │ └── .keeper │ │ │ │ └── SHARE │ │ │ │ │ └── .keeper │ │ │ ├── ML │ │ │ │ ├── .keeper │ │ │ │ ├── CATS │ │ │ │ │ └── .keeper │ │ │ │ ├── COMPILE │ │ │ │ │ ├── .keeper │ │ │ │ │ └── DATS │ │ │ │ │ │ └── .keeper │ │ │ │ ├── DATS │ │ │ │ │ ├── .keeper │ │ │ │ │ └── SHARE │ │ │ │ │ │ └── .keeper │ │ │ │ ├── HATS │ │ │ │ │ └── .keeper │ │ │ │ └── SATS │ │ │ │ │ ├── .keeper │ │ │ │ │ └── SHARE │ │ │ │ │ └── .keeper │ │ │ ├── SATS │ │ │ │ ├── .keeper │ │ │ │ ├── Number │ │ │ │ │ └── .keeper │ │ │ │ └── SHARE │ │ │ │ │ └── .keeper │ │ │ └── libc │ │ │ │ ├── .keeper │ │ │ │ ├── CATS │ │ │ │ ├── .keeper │ │ │ │ ├── arpa │ │ │ │ │ └── .keeper │ │ │ │ ├── gdbm │ │ │ │ │ └── .keeper │ │ │ │ ├── netinet │ │ │ │ │ └── .keeper │ │ │ │ └── sys │ │ │ │ │ └── .keeper │ │ │ │ ├── DATS │ │ │ │ ├── .keeper │ │ │ │ ├── arpa │ │ │ │ │ └── .keeper │ │ │ │ ├── gdbm │ │ │ │ │ └── .keeper │ │ │ │ ├── netinet │ │ │ │ │ └── .keeper │ │ │ │ └── sys │ │ │ │ │ └── .keeper │ │ │ │ └── SATS │ │ │ │ ├── .keeper │ │ │ │ ├── arpa │ │ │ │ └── .keeper │ │ │ │ ├── gdbm │ │ │ │ ├── .keeper │ │ │ │ └── SHARE │ │ │ │ │ └── .keeper │ │ │ │ ├── netinet │ │ │ │ └── .keeper │ │ │ │ └── sys │ │ │ │ └── .keeper │ │ ├── missing │ │ ├── npm-utils │ │ │ └── contrib │ │ │ │ ├── .keeper │ │ │ │ ├── atscntrb │ │ │ │ └── .keeper │ │ │ │ ├── libats- │ │ │ │ └── hwxi │ │ │ │ │ └── .keeper │ │ │ │ └── libats-hwxi │ │ ├── prelude │ │ │ ├── .keeper │ │ │ ├── CATS │ │ │ │ └── .keeper │ │ │ ├── DATS │ │ │ │ ├── .keeper │ │ │ │ └── SHARE │ │ │ │ │ └── .keeper │ │ │ └── SATS │ │ │ │ └── .keeper │ │ ├── share │ │ │ ├── .keeper │ │ │ ├── H │ │ │ │ └── .keeper │ │ │ └── HATS │ │ │ │ └── .keeper │ │ ├── src │ │ │ ├── .keeper │ │ │ └── CBOOT │ │ │ │ ├── ccomp │ │ │ │ └── runtime │ │ │ │ │ └── GCATS │ │ │ │ │ ├── m32 │ │ │ │ │ └── .keeper │ │ │ │ │ └── m64 │ │ │ │ │ └── .keeper │ │ │ │ ├── config.h │ │ │ │ ├── libats │ │ │ │ ├── .keeper │ │ │ │ ├── CATS │ │ │ │ │ └── .keeper │ │ │ │ └── ngc │ │ │ │ │ └── CATS │ │ │ │ │ └── .keeper │ │ │ │ ├── libc │ │ │ │ ├── .keeper │ │ │ │ ├── CATS │ │ │ │ │ └── .keeper │ │ │ │ └── sys │ │ │ │ │ └── CATS │ │ │ │ │ └── .keeper │ │ │ │ └── prelude │ │ │ │ └── CATS │ │ │ │ └── .keeper │ │ └── utils │ │ │ ├── atscc │ │ │ └── .keeper │ │ │ ├── emacs │ │ │ └── .keeper │ │ │ ├── libatsopt │ │ │ ├── DATS │ │ │ │ └── .keeper │ │ │ └── SATS │ │ │ │ └── .keeper │ │ │ └── myatscc │ │ │ └── .keeper │ ├── Makefile │ ├── Makefile.atxt │ ├── Makefile.gen │ ├── Makefile_inclats │ ├── README │ └── SCRIPT │ │ └── .keeper ├── EXAMPLE │ ├── ARITH │ │ ├── Bezout_identity.dats │ │ ├── Makefile │ │ ├── basics.sats │ │ ├── fibonacci.dats │ │ ├── fibonacci.sats │ │ └── tally-of-powers.dats │ ├── ATS-DEV-LIST │ │ ├── Makefile │ │ ├── README │ │ └── offsetof.dats │ ├── ATS-QA-LIST │ │ ├── Makefile │ │ ├── README │ │ ├── alloca.dats │ │ ├── calc_refcnt.dats │ │ ├── for-0install.dats │ │ ├── list_copy.dats │ │ ├── list_last.dats │ │ ├── qa-list-190.dats │ │ ├── qa-list-191.dats │ │ ├── qa-list-195.dats │ │ ├── qa-list-197.dats │ │ ├── qa-list-200.dats │ │ ├── qa-list-2014-12-04-2.dats │ │ ├── qa-list-2014-12-04.dats │ │ ├── qa-list-2014-12-07.dats │ │ ├── qa-list-2015-01-03-2.dats │ │ ├── qa-list-2015-01-03.dats │ │ ├── qa-list-2015-02-08.dats │ │ ├── qa-list-2015-02-20.dats │ │ ├── qa-list-2018-01-12.dats │ │ ├── qa-list-205.dats │ │ ├── qa-list-209.dats │ │ ├── qa-list-223.dats │ │ ├── qa-list-229.dats │ │ ├── qa-list-244.dats │ │ ├── qa-list-262.dats │ │ ├── qa-list-285.dats │ │ ├── qa-list-303.dats │ │ ├── qa-list-312.dats │ │ ├── qa-list-32.dats │ │ ├── qa-list-334.dats │ │ ├── qa-list-35.dats │ │ ├── qa-list-358.dats │ │ ├── qa-list-366.dats │ │ ├── qa-list-370.dats │ │ ├── qa-list-387.dats │ │ ├── qa-list-43.dats │ │ ├── qa-list-45.dats │ │ ├── qa-list-57.dats │ │ ├── qa-list-60.dats │ │ ├── qa-list-62.dats │ │ ├── qa-list-64.dats │ │ ├── qa-list-66.dats │ │ ├── qa-list-67.dats │ │ ├── qa-list-73.dats │ │ ├── qa-list-91.dats │ │ ├── qa-list-97.dats │ │ ├── stkclo.dats │ │ └── strlen.dats │ ├── ATSLF │ │ ├── Ackermann.dats │ │ ├── BinaryTreeLemmas.dats │ │ ├── CPS.dats │ │ ├── CoYonedaLemma.dats │ │ ├── CoYonedaLemma.test-cmp │ │ ├── CutElimIL.dats │ │ ├── CutElimILL.dats │ │ ├── F-algebra.dats │ │ ├── F-algebra.test-cmp │ │ ├── F-algebra_js.dats │ │ ├── HilbertCalc.dats │ │ ├── IsoscelesAngleq.dats │ │ ├── KolmogorovTrans.dats │ │ ├── Makefile │ │ ├── PHP.dats │ │ ├── SMI.dats │ │ ├── STLC-SN-foas.dats │ │ ├── YonedaLemma.dats │ │ ├── YonedaLemma.test-cmp │ │ ├── YonedaLemma_js.dats │ │ ├── infprime.dats │ │ ├── naive-set.dats │ │ └── sqrt2_irrat.dats │ ├── ATSLIB │ │ ├── Makefile │ │ ├── Makefile.atxt │ │ ├── Makefile.gen │ │ ├── libats_ATS1_funheap_binomial.dats │ │ ├── libats_ATS1_funheap_braun.dats │ │ ├── libats_ATS1_funmset_listord.dats │ │ ├── libats_ATS1_funset_listord.dats │ │ ├── libats_ATS1_linset_listord.dats │ │ ├── libats_ML_COMPILE_all.dats │ │ ├── libats_ML_array0.dats │ │ ├── libats_ML_filebas.dats │ │ ├── libats_ML_funmap.dats │ │ ├── libats_ML_funset.dats │ │ ├── libats_ML_gvalue.dats │ │ ├── libats_ML_hashtblref.dats │ │ ├── libats_ML_intrange.dats │ │ ├── libats_ML_list0.dats │ │ ├── libats_ML_matrix0.dats │ │ ├── libats_ML_monad_list.dats │ │ ├── libats_ML_monad_maybe.dats │ │ ├── libats_ML_myfunmap.dats │ │ ├── libats_ML_myfunset.dats │ │ ├── libats_ML_myhashtblref.dats │ │ ├── libats_ML_qlistref.dats │ │ ├── libats_ML_strarr.dats │ │ ├── libats_ML_string.dats │ │ ├── libats_bitvec.dats │ │ ├── libats_deqarray.dats │ │ ├── libats_dllist.dats │ │ ├── libats_dynarray.dats │ │ ├── libats_funarray_braunt.dats │ │ ├── libats_fundeque_fngtree.dats │ │ ├── libats_funmap_avltree.dats │ │ ├── libats_funmap_list.dats │ │ ├── libats_funmap_rbtree.dats │ │ ├── libats_funmset_listord.dats │ │ ├── libats_funralist_nested.dats │ │ ├── libats_funset_avltree.dats │ │ ├── libats_funset_listord.dats │ │ ├── libats_gflist.dats │ │ ├── libats_hashtbl_chain.dats │ │ ├── libats_hashtbl_linprb.dats │ │ ├── libats_libc_dirent.dats │ │ ├── libats_libc_dlfcn.dats │ │ ├── libats_libc_fcntl.dats │ │ ├── libats_libc_fnmatch.dats │ │ ├── libats_libc_gdbm_gdbm.dats │ │ ├── libats_libc_malloc.dats │ │ ├── libats_libc_math.dats │ │ ├── libats_libc_signal.dats │ │ ├── libats_libc_stdio.dats │ │ ├── libats_libc_stdlib.dats │ │ ├── libats_libc_string.dats │ │ ├── libats_libc_strings.dats │ │ ├── libats_libc_sys_stat.dats │ │ ├── libats_libc_time.dats │ │ ├── libats_libc_unistd.dats │ │ ├── libats_lindeque_dllist.dats │ │ ├── libats_linheap_binomial.dats │ │ ├── libats_linheap_binomial2.dats │ │ ├── libats_linmap_avltree.dats │ │ ├── libats_linmap_list.dats │ │ ├── libats_linmap_randbst.dats │ │ ├── libats_linmap_skiplist.dats │ │ ├── libats_linset_avltree.dats │ │ ├── libats_linset_listord.dats │ │ ├── libats_qlist.dats │ │ ├── libats_refcount.dats │ │ ├── libats_sllist.dats │ │ ├── libats_stkarray.dats │ │ ├── libats_stringbuf.dats │ │ ├── prelude_array.dats │ │ ├── prelude_arrayptr.dats │ │ ├── prelude_arrayref.dats │ │ ├── prelude_basics.dats │ │ ├── prelude_bool.dats │ │ ├── prelude_char.dats │ │ ├── prelude_checkast.dats │ │ ├── prelude_filebas.dats │ │ ├── prelude_float.dats │ │ ├── prelude_gprint.dats │ │ ├── prelude_grandom.dats │ │ ├── prelude_integer.dats │ │ ├── prelude_intrange.dats │ │ ├── prelude_list.dats │ │ ├── prelude_list_vt.dats │ │ ├── prelude_matrix.dats │ │ ├── prelude_matrixptr.dats │ │ ├── prelude_matrixref.dats │ │ ├── prelude_memory.dats │ │ ├── prelude_option.dats │ │ ├── prelude_option_vt.dats │ │ ├── prelude_pointer.dats │ │ ├── prelude_reference.dats │ │ ├── prelude_stream.dats │ │ ├── prelude_stream_vt.dats │ │ ├── prelude_string.dats │ │ └── prelude_tostring.dats │ ├── EFFECTIVATS │ │ ├── .htaccess │ │ ├── DiningPhil │ │ │ ├── DiningPhil.dats │ │ │ ├── DiningPhil.sats │ │ │ ├── DiningPhil_dine.dats │ │ │ ├── DiningPhil_fork.dats │ │ │ ├── DiningPhil_think.dats │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ └── main.html │ │ ├── DiningPhil2 │ │ │ ├── DiningPhil2.dats │ │ │ ├── DiningPhil2.sats │ │ │ ├── DiningPhil2_fork.dats │ │ │ ├── DiningPhil2_mylib.dats │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ └── main.html │ │ ├── DivideConquer │ │ │ ├── Makefile │ │ │ ├── PackIt │ │ │ │ ├── DATS │ │ │ │ │ └── DivideConquer.dats │ │ │ │ ├── Makefile_test │ │ │ │ ├── TEST │ │ │ │ │ ├── Fibonacci.dats │ │ │ │ │ ├── MCarthy91.dats │ │ │ │ │ └── Makefile │ │ │ │ ├── mylibies.hats │ │ │ │ └── package.json │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ └── main.html │ │ ├── DivideConquerPar │ │ │ ├── DirWalk.dats │ │ │ ├── Makefile │ │ │ ├── ParFibo.dats │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ └── package.json │ │ ├── Enigma │ │ │ └── Enigma.dats │ │ ├── FRP-bacon.js │ │ │ ├── JS │ │ │ │ ├── Makefile │ │ │ │ ├── theCounter2_baconjs.dats │ │ │ │ ├── theCounter3_baconjs.dats │ │ │ │ └── theCounter_callback.dats │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ └── main.html │ │ ├── GraphSearch-npm │ │ │ ├── DoubletsPlay.dats │ │ │ ├── Makefile │ │ │ ├── QueenPuzzle.dats │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ └── package.json │ │ ├── GraphSearch │ │ │ ├── DoubletsPlay.dats │ │ │ ├── GameOf24Play.dats │ │ │ ├── GraphSearch.dats │ │ │ ├── GraphSearch_bfs.dats │ │ │ ├── GraphSearch_dfs.dats │ │ │ ├── Makefile │ │ │ ├── QueenPuzzle.dats │ │ │ ├── index.html │ │ │ └── main.atxt │ │ ├── HanoiTowers │ │ │ ├── HanoiTowers-1.dats │ │ │ ├── HanoiTowers-2-2.dats │ │ │ ├── HanoiTowers-2.dats │ │ │ ├── HanoiTowers-3-2.dats │ │ │ ├── HanoiTowers-3.dats │ │ │ ├── HanoiTowers_txt.dats │ │ │ ├── HanoiTowers_txt.html │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ └── main.html │ │ ├── IPC-hiredis │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ ├── msgchan.dats │ │ │ ├── msgchan.sats │ │ │ ├── params.hats │ │ │ ├── redisContextSetup.dats │ │ │ ├── test_dn.dats │ │ │ ├── test_up.dats │ │ │ └── testlib.dats │ │ ├── MYTEXT │ │ │ ├── Makefile │ │ │ ├── bin │ │ │ │ └── .keeper │ │ │ ├── mytextfun.hats │ │ │ └── mytexting.dats │ │ ├── Makefile │ │ ├── Producer-Consumer │ │ │ ├── Makefile │ │ │ ├── SharedResource.dats │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ ├── sbuffer.dats │ │ │ └── sbuffer.sats │ │ ├── PwTP-bool-vs-prop │ │ │ ├── Makefile │ │ │ ├── bool-vs-prop.dats │ │ │ ├── index.html │ │ │ └── main.atxt │ │ ├── README │ │ ├── Readers-and-Writers │ │ │ ├── DB_read_write.dats │ │ │ ├── DB_read_write.sats │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ └── main.html │ │ ├── Sierpinski-3angle │ │ │ ├── Makefile │ │ │ ├── SERVER │ │ │ ├── Sierpinski-3angle-final.dats │ │ │ ├── Sierpinski-3angle-part.dats │ │ │ ├── Sierpinski-3angle.html │ │ │ ├── index.html │ │ │ ├── main.html │ │ │ └── main_html.php │ │ ├── StreamPar │ │ │ ├── Makefile │ │ │ ├── QueenPuzzle.dats │ │ │ ├── StreamPar_binge.dats │ │ │ ├── StreamPar_misc.dats │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ └── package.json │ │ ├── file-copying │ │ │ ├── Makefile │ │ │ ├── fcopy1.dats │ │ │ ├── fcopy2.dats │ │ │ ├── fcopy3.dats │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ └── main.html │ │ ├── funcomb-style │ │ │ ├── JS │ │ │ │ ├── permute.dats │ │ │ │ ├── queen-puzzle-bfs.dats │ │ │ │ ├── queen-puzzle-dfs-2.dats │ │ │ │ └── queen-puzzle-dfs.dats │ │ │ ├── Makefile │ │ │ ├── breadth-first-2.dats │ │ │ ├── breadth-first.dats │ │ │ ├── depth-first-2.dats │ │ │ ├── depth-first.dats │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ ├── permute.dats │ │ │ ├── queen-puzzle-bfs.dats │ │ │ ├── queen-puzzle-dfs-2.dats │ │ │ └── queen-puzzle-dfs.dats │ │ ├── http-server │ │ │ ├── Makefile │ │ │ ├── SERVER │ │ │ ├── index.html │ │ │ ├── main.html │ │ │ ├── main_html.php │ │ │ ├── myserver.dats │ │ │ └── myserver2.dats │ │ ├── index.html │ │ ├── linear-streams │ │ │ ├── Fibonacci.dats │ │ │ ├── Fibonacci_vt.dats │ │ │ ├── Makefile │ │ │ ├── QueensPuzzle.dats │ │ │ ├── QueensPuzzle_vt.dats │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ └── main.html │ │ ├── list-folding │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── list_fold_left.dats │ │ │ ├── list_fold_right.dats │ │ │ ├── list_fold_split.dats │ │ │ ├── main.atxt │ │ │ └── main.html │ │ ├── loop-as-tailrec │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ └── tailrec.dats │ │ ├── mergesort │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ ├── mergesort.dats │ │ │ ├── mergesort_array.dats │ │ │ └── mergesort_list.dats │ │ ├── parallel-sorting │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── mergesort.dats │ │ │ ├── mergesort_cps.dats │ │ │ └── mergesort_par_cps.dats │ │ ├── parsing-cmbntr-cps │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ └── tokenizer.dats │ │ ├── prop-logic │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ ├── prop-logic.dats │ │ │ └── prop-logic.sats │ │ ├── queue-sllist2 │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ └── queue-sllist2.dats │ │ ├── sorting-linear-lists │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ ├── mergesort_list_vt.dats │ │ │ ├── mergesort_sllist.dats │ │ │ ├── mylist.dats │ │ │ ├── mylist_mergesort.dats │ │ │ ├── mylist_quicksort.dats │ │ │ ├── quicksort_list_vt.dats │ │ │ └── quicksort_sllist.dats │ │ ├── ssntyped-channels-1 │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── introxmpl0.dats │ │ │ ├── introxmpl1.dats │ │ │ ├── introxmpl1_client.dats │ │ │ ├── introxmpl1_demo.html │ │ │ ├── introxmpl1_prtcl.sats │ │ │ ├── introxmpl1_server.dats │ │ │ ├── main.atxt │ │ │ └── main.html │ │ ├── ssntyped-channels-2 │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── introxmpl1.html │ │ │ ├── introxmpl1_client.dats │ │ │ ├── introxmpl1_prtcl.sats │ │ │ ├── introxmpl1_server.dats │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ ├── multest.html │ │ │ ├── multest_client.dats │ │ │ ├── multest_prtcl.sats │ │ │ └── multest_server.dats │ │ ├── stack-array │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ ├── postfix_eval.dats │ │ │ └── stkarray.dats │ │ └── word-counting │ │ │ ├── Makefile │ │ │ ├── index.html │ │ │ ├── main.atxt │ │ │ ├── main.html │ │ │ ├── wordcnt.dats │ │ │ ├── wordcnt2.dats │ │ │ └── wordcnt_vt.dats │ ├── INTRO │ │ ├── Makefile │ │ ├── acker1.dats │ │ ├── acker2.dats │ │ ├── acker3.dats │ │ ├── acker4.dats │ │ ├── areverse.dats │ │ ├── atof.dats │ │ ├── atoi.dats │ │ ├── bintree.dats │ │ ├── f91.dats │ │ ├── fact1.dats │ │ ├── fact1.test-cmp │ │ ├── fact2.dats │ │ ├── fact3.dats │ │ ├── fact_uninterp.dats │ │ ├── fact_uninterp.test-cmp │ │ ├── fcopy.dats │ │ ├── fcopy.test-cmp │ │ ├── fcopy.test-inp │ │ ├── fcopy.test-out │ │ ├── fcopy2.dats │ │ ├── fcopy2.test-cmp │ │ ├── fcopy2.test-inp │ │ ├── fib1.dats │ │ ├── fib2.dats │ │ ├── fib_lazy.dats │ │ ├── fib_llazy.dats │ │ ├── fibmem.dats │ │ ├── fprintlst2.dats │ │ ├── fprintlst2.test-cmp │ │ ├── fprtuple.dats │ │ ├── fprtuple.test-cmp │ │ ├── gfact.dats │ │ ├── gfact.test-cmp │ │ ├── hello.dats │ │ ├── hello.test-cmp │ │ ├── intecho.dats │ │ ├── intecho.test-cmp │ │ ├── intecho.test-inp │ │ ├── intrange.dats │ │ ├── linenmbr.dats │ │ ├── linenmbr.test-cmp │ │ ├── linenmbr.test-inp │ │ ├── listfuns.dats │ │ ├── listpermute.dats │ │ ├── listpermute.test-cmp │ │ ├── myatslib.dats │ │ ├── ordset.dats │ │ ├── ordset.test-cmp │ │ ├── sieve_lazy.dats │ │ ├── sieve_lazy.test-cmp │ │ ├── sieve_llazy.dats │ │ ├── sieve_llazy.test-cmp │ │ ├── staref.dats │ │ ├── strprefix.dats │ │ └── tally.dats │ ├── JS-emscripten │ │ ├── README.md │ │ ├── fact │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── fact.dats │ │ │ ├── fact.html │ │ │ ├── fact_lib.js │ │ │ ├── fact_post.js │ │ │ └── fact_pre.js │ │ ├── fact2 │ │ │ ├── Makefile │ │ │ ├── fact2.dats │ │ │ ├── fact2_counter.dats │ │ │ ├── fact2_counter.html │ │ │ └── fact2_pre.js │ │ └── showfile │ │ │ ├── DATA │ │ │ └── showfile.html │ │ │ ├── Makefile │ │ │ ├── showfile.dats │ │ │ ├── showfile.html │ │ │ ├── showfile_mylib.dats │ │ │ ├── showfile_post.js │ │ │ └── showfile_pre.js │ ├── Java │ │ └── matrix │ │ │ ├── Makefile │ │ │ ├── MyMatrix.dats │ │ │ ├── MyMatrix.java │ │ │ ├── MyMatrix.sats │ │ │ └── MyMatrix_test.java │ ├── MISC │ │ ├── DTW0.dats │ │ ├── JS │ │ │ └── ferryman.dats │ │ ├── LCS0.dats │ │ ├── Makefile │ │ ├── Makefile.atxt │ │ ├── Makefile.gen │ │ ├── absreimpl.dats │ │ ├── arith_overflow.dats │ │ ├── autodiff.dats │ │ ├── coinflip.dats │ │ ├── ferryman.dats │ │ ├── fib_memo.dats │ │ ├── fibver_loop.dats │ │ ├── fibver_trec.dats │ │ ├── foreach_getline.dats │ │ ├── fourslot.dats │ │ ├── hanoi.dats │ │ ├── intsqrt_cps.dats │ │ ├── intsqrt_prf.dats │ │ ├── lambda_cal1.dats │ │ ├── lambda_cal2.dats │ │ ├── matrixops.dats │ │ ├── memoization.dats │ │ ├── monad_list.dats │ │ ├── monad_maybe.dats │ │ ├── monad_state.dats │ │ ├── morse_enum.dats │ │ ├── myfixptcomb.dats │ │ ├── mysendmailist.dats │ │ ├── passwdgen.dats │ │ ├── queens_comb.dats │ │ ├── queens_lazy.dats │ │ ├── queens_lincomb.dats │ │ ├── queens_loop.dats │ │ ├── randerlin.dats │ │ ├── readdirall.dats │ │ ├── sieve.dats │ │ ├── sllist_mapfree.dats │ │ ├── smith_waterman.dats │ │ ├── stdlib_bsearch.dats │ │ ├── strmat.dats │ │ ├── systemf │ │ │ ├── gtree.dats │ │ │ ├── list.dats │ │ │ └── numeral.dats │ │ ├── tempfunctor.dats │ │ ├── totient.dats │ │ ├── treap_man.dats │ │ ├── wclines.dats │ │ ├── word-chain.dats │ │ └── words_search.dats │ ├── OBJC │ │ ├── README │ │ └── hello │ │ │ ├── Makefile │ │ │ ├── hello.m │ │ │ └── print_hello.dats │ ├── PCPV │ │ ├── EXTERN │ │ │ ├── array.dats │ │ │ ├── array.sats │ │ │ ├── array_insort.dats │ │ │ ├── list.dats │ │ │ ├── list.sats │ │ │ ├── list_insort.dats │ │ │ ├── list_vt.dats │ │ │ ├── list_vt.sats │ │ │ └── stampseq.sats │ │ ├── Makefile │ │ ├── bsearch_arr.dats │ │ ├── insort_lst.dats │ │ ├── mergesort_lst.dats │ │ └── quicksort_lst.dats │ ├── PEULER │ │ ├── Makefile │ │ ├── P1 │ │ │ ├── problem1-hwxi.dats │ │ │ └── problem1-hwxi2.dats │ │ ├── P10 │ │ │ └── problem10-hwxi.dats │ │ ├── P100 │ │ │ └── problem100-hwxi.dats │ │ ├── P12 │ │ │ └── problem12-hwxi.dats │ │ ├── P14 │ │ │ └── problem14-hwxi.dats │ │ ├── P16 │ │ │ └── problem16-hwxi.dats │ │ ├── P2 │ │ │ ├── problem2-hwxi.dats │ │ │ └── problem2-hwxi2.dats │ │ ├── P3 │ │ │ └── problem3-hwxi.dats │ │ ├── P301 │ │ │ └── problem301-hwxi.dats │ │ ├── P4 │ │ │ └── problem4-hwxi.dats │ │ ├── P6 │ │ │ └── problem6-hwxi.dats │ │ └── P8 │ │ │ └── problem8-hwxi.dats │ ├── PORTABLE │ │ ├── README │ │ └── hello │ │ │ ├── MYPORTDIR │ │ │ └── .keeper │ │ │ ├── Makefile │ │ │ └── hello.dats │ ├── Pure │ │ ├── Makefile │ │ ├── fact_dats.pure │ │ ├── gauss_jordan.dats │ │ └── gauss_jordan_dats.pure │ ├── RosettaCode │ │ ├── Amicable_pairs.dats │ │ ├── Best_shuffle.dats │ │ ├── DATA │ │ │ ├── Stream_Merge_0.txt │ │ │ └── Stream_Merge_1.txt │ │ ├── Lucas-Lehmer_test.dats │ │ ├── Lucas-Lehmer_test2.dats │ │ ├── Makefile │ │ ├── Middle_three_digits.dats │ │ ├── Nested_function.dats │ │ ├── PATSRELOCROOT │ │ │ └── .keeper │ │ ├── Pangram_checker.dats │ │ ├── Penneys_game.dats │ │ ├── Playing_cards.dats │ │ ├── Primality_by_trial_division.dats │ │ ├── README │ │ ├── Remove_lines_from_a_file.dats │ │ ├── Stream_Merge.dats │ │ └── myatsreloc.dats │ ├── TESTATS │ │ ├── Makefile │ │ ├── README │ │ ├── areverse.test-cmp │ │ ├── arrinit.dats │ │ ├── casehead.dats │ │ ├── catamorph.dats │ │ ├── clofuns.dats │ │ ├── codegen2.dats │ │ ├── codegen2.test-cmp │ │ ├── codegen2_test.dats │ │ ├── conjdisj.dats │ │ ├── d2ctype.dats │ │ ├── dotoverld.dats │ │ ├── extfcall.dats │ │ ├── extvar.dats │ │ ├── extvar.test-cmp │ │ ├── fieldarr.dats │ │ ├── findexn.dats │ │ ├── fixedpoint.dats │ │ ├── fixedpoint.test-cmp │ │ ├── funargpat.dats │ │ ├── getenv.dats │ │ ├── getenv.test-cmp │ │ ├── ifcase.dats │ │ ├── ifhead.dats │ │ ├── intbase.dats │ │ ├── intbase.test-cmp │ │ ├── kacker.dats │ │ ├── kacker.test-cmp │ │ ├── lazytest.dats │ │ ├── lazytest.test-cmp │ │ ├── listpat.dats │ │ ├── llazytest.dats │ │ ├── llazytest.test-cmp │ │ ├── locimplmnt.dats │ │ ├── loctmplt.dats │ │ ├── loctmplt2.dats │ │ ├── mutailrec.dats │ │ ├── partmplt.dats │ │ ├── partmplt.test-cmp │ │ ├── patguard.dats │ │ ├── patlinrec.dats │ │ ├── patrefas.dats │ │ ├── pfsearch.dats │ │ ├── reassume.dats │ │ ├── s2rt_float.dats │ │ ├── s2rt_string.dats │ │ ├── stkalloc.dats │ │ ├── stkalloc.test-cmp │ │ ├── sumodd.dats │ │ ├── tempboxed.dats │ │ ├── tempboxed.test-cmp │ │ ├── tempenver.dats │ │ ├── trywith.dats │ │ ├── undefined.dats │ │ ├── union.dats │ │ ├── variadic.dats │ │ ├── weekday.dats │ │ ├── wherecls.dats │ │ └── withtype.dats │ ├── TYPEVAL │ │ ├── Makefile │ │ └── dotprod.dats │ └── WORKSHOP │ │ ├── Makefile │ │ ├── dotprod2_mt.dats │ │ └── dotprod_mt.dats ├── Hibou57 │ └── .keeper ├── Makefile_test ├── NOTES │ ├── ATS-history.txt │ ├── ATS-trilogy.txt │ └── extundelete-2018-03-11.log └── PROJECT │ ├── MEDIUM │ ├── ATS-learning │ │ ├── 2014-01-02 │ │ │ ├── Makefile │ │ │ └── problem1.dats │ │ ├── 2014-01-03 │ │ │ └── lecture.txt │ │ └── 2014-01-10 │ │ │ ├── Makefile │ │ │ ├── maxmin.dats │ │ │ └── myfun.dats │ └── ats2langweb │ │ ├── CLIENT │ │ ├── DATS │ │ │ ├── atslangweb_utils.dats │ │ │ ├── file_get_contents.dats │ │ │ ├── pats2xhtml_eval.dats │ │ │ ├── pats2xhtmlize.dats │ │ │ ├── patservice_trigger.dats │ │ │ ├── patsopt_atscc2js.dats │ │ │ ├── patsopt_ccats.dats │ │ │ ├── patsopt_tcats.dats │ │ │ ├── patsoptaas_examples.dats │ │ │ ├── patsoptaas_templates.dats │ │ │ └── patsoptaas_utils.dats │ │ ├── MYCODE │ │ │ ├── ace-mode-ats2-by-hwwu.js │ │ │ ├── libatscc2js_all.js │ │ │ ├── libatscc2js_baconjs_all.js │ │ │ ├── libatscc2js_bucs320_parcomb.js │ │ │ ├── libatscc2js_canvas2d_all.js │ │ │ └── libatscc2js_print_store_cats.js │ │ ├── Makefile │ │ └── SATS │ │ │ └── atslangweb.sats │ │ ├── LAYOUT │ │ ├── Makefile │ │ ├── mylayout1.dats │ │ ├── mylayout2.dats │ │ ├── theCommunity_layout.dats │ │ ├── theDocuments_layout.dats │ │ ├── theDownloads_layout.dats │ │ ├── theExamples_layout.dats │ │ ├── theHome_layout.dats │ │ ├── theImplements_layout.dats │ │ ├── theLibraries_layout.dats │ │ ├── thePapers_layout.dats │ │ ├── thePatsoptaas_layout.dats │ │ └── theResources_layout.dats │ │ ├── MYDATA │ │ └── .gitignore │ │ ├── Makefile │ │ ├── Patsoptaas.html │ │ ├── SERVER │ │ ├── CATS │ │ │ └── basics_cats.php │ │ ├── DATS │ │ │ ├── atscc2js_comp.dats │ │ │ ├── atslangweb_utils.dats │ │ │ ├── basics.dats │ │ │ ├── pats2xhtml_eval.dats │ │ │ ├── patsopt_ccats.dats │ │ │ └── patsopt_tcats.dats │ │ ├── MYCODE │ │ │ ├── Patsoptaas_serve.php │ │ │ ├── atslangweb_file_get_contents.php │ │ │ ├── atslangweb_pats2xhtml_eval_0_.php │ │ │ ├── atslangweb_pats2xhtmlize.php │ │ │ ├── atslangweb_patsopt_atscc2js_0_.php │ │ │ ├── atslangweb_patsopt_atscc2js_1_.php │ │ │ ├── atslangweb_patsopt_ccats_0_.php │ │ │ ├── atslangweb_patsopt_tcats_0_.php │ │ │ ├── atslangweb_patsopt_tcats_1_.php │ │ │ ├── atslangweb_utils_dats.php │ │ │ ├── basics_cats.php │ │ │ ├── basics_dats.php │ │ │ └── libatscc2php_all.php │ │ ├── Makefile │ │ └── SATS │ │ │ └── atslangweb.sats │ │ ├── theLogo │ │ ├── Makefile │ │ ├── theLogo.dats │ │ └── theLogo.txt │ │ ├── thePage │ │ ├── Examples.php │ │ └── share.php │ │ ├── thePage2 │ │ └── Patsoptaas_seed.php │ │ ├── thePage2Left │ │ └── Patsoptaas_seed.php │ │ ├── thePage2RBody │ │ └── Patsoptaas_seed.php │ │ ├── thePage2RTop │ │ └── Patsoptaas_seed.php │ │ ├── thePageLeft │ │ ├── Community.php │ │ ├── Documents.php │ │ ├── Downloads.php │ │ ├── Examples.php │ │ ├── Home.php │ │ ├── Implements.php │ │ ├── Libraries.php │ │ ├── Papers.php │ │ ├── Resources.php │ │ ├── share.php │ │ └── share2.php │ │ ├── thePageRBodyLContent │ │ ├── Community.php │ │ ├── Documents.php │ │ ├── Downloads.php │ │ ├── Examples.php │ │ ├── Home.php │ │ ├── Implements.php │ │ ├── Libraries.php │ │ ├── Papers.php │ │ └── Resources.php │ │ ├── thePageRBodyLHeader │ │ ├── Community.php │ │ ├── Documents.php │ │ ├── Downloads.php │ │ ├── Examples.php │ │ ├── Home.php │ │ ├── Implements.php │ │ ├── Libraries.php │ │ ├── Papers.php │ │ ├── Resources.php │ │ └── share.php │ │ ├── thePageRBodyRight │ │ ├── Community.php │ │ ├── Documents.php │ │ ├── Downloads.php │ │ ├── Examples.php │ │ ├── Home.php │ │ ├── Implements.php │ │ ├── Libraries.php │ │ ├── Papers.php │ │ └── Resources.php │ │ ├── thePageRFooterRest │ │ └── Home.php │ │ ├── thePageRHeaderSep │ │ ├── Community.php │ │ ├── Documents.php │ │ ├── Downloads.php │ │ ├── Examples.php │ │ ├── Home.php │ │ ├── Implements.php │ │ ├── Libraries.php │ │ ├── Papers.php │ │ ├── Resources.php │ │ ├── share.php │ │ └── share2.php │ │ └── thePageRHeaderTop │ │ └── Home.php │ ├── SMALL │ └── Tetris │ │ ├── Makefile │ │ ├── README │ │ ├── tetris.dats │ │ ├── tetris.sats │ │ ├── tetris_region.dats │ │ └── tetris_shape.dats │ └── TEMPORARY │ └── GameWithSDL2 │ └── CHAP1 │ ├── Game │ ├── Game.dats │ └── Game.sats │ ├── Hello │ ├── Hello.dats │ ├── Hello_Renderer.dats │ ├── Hello_Window.dats │ └── Makefile │ └── Hello2 │ ├── Hello.dats │ └── Makefile ├── docugen └── Makefile_atslib ├── flake.lock ├── flake.nix ├── libats ├── ATS1 │ ├── DATS │ │ ├── funheap_binomial.dats │ │ ├── funheap_braun.dats │ │ ├── funmset_listord.dats │ │ ├── funset_listord.dats │ │ └── linset_listord.dats │ └── SATS │ │ ├── funheap_binomial.sats │ │ ├── funheap_braun.sats │ │ ├── funmset_listord.sats │ │ ├── funset_listord.sats │ │ └── linset_listord.sats ├── ATS2 │ ├── DATS │ │ ├── fcntainer │ │ │ ├── array0.dats │ │ │ ├── integer.dats │ │ │ ├── intrange.dats │ │ │ ├── list0.dats │ │ │ └── main.dats │ │ ├── fcollect │ │ │ ├── opverb.dats │ │ │ ├── opverb_int0.dats │ │ │ └── opverb_list0.dats │ │ └── giterator │ │ │ ├── giterator.dats │ │ │ ├── giterator_array.dats │ │ │ ├── giterator_list.dats │ │ │ └── giterator_list_vt.dats │ ├── SATS │ │ ├── CODEGEN │ │ │ ├── Makefile │ │ │ ├── Makefile.atxt │ │ │ ├── Makefile.gen │ │ │ └── giterator.atxt │ │ ├── fcntainer.sats │ │ └── giterator.sats │ └── TEST │ │ ├── Makefile │ │ ├── QueenPuzzle.dats │ │ ├── isPrime.dats │ │ ├── test01.dats │ │ ├── test02.dats │ │ └── test03.dats ├── BUCS320 │ ├── DivideConquer │ │ ├── DATS │ │ │ ├── DivideConquer.dats │ │ │ ├── DivideConquer_cont.dats │ │ │ └── DivideConquer_memo.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── MergeSort_list.dats │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ ├── test03.dats │ │ │ ├── test04.dats │ │ │ └── test05.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── DivideConquerPar │ │ ├── DATS │ │ │ └── DivideConquerPar.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ └── test03.dats │ │ ├── mydepies.hats │ │ ├── mylibies.hats │ │ └── package.json │ ├── GamePlay │ │ ├── DATS │ │ │ └── GamePlay_single.dats │ │ ├── Makefile_test │ │ └── TEST │ │ │ ├── Makefile │ │ │ ├── hangman_single.dats │ │ │ ├── kbstream.dats │ │ │ └── test_single.dats │ ├── GraphSearch │ │ ├── DATS │ │ │ ├── GraphSearch.dats │ │ │ ├── GraphSearch_bfs.dats │ │ │ └── GraphSearch_dfs.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── DoubletsPlay.dats │ │ │ ├── GameOf24Play.dats │ │ │ ├── Makefile │ │ │ └── QueenPuzzle.dats │ │ ├── mylibies.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── GraphStreamize │ │ ├── DATS │ │ │ ├── GraphStreamize.dats │ │ │ ├── GraphStreamize_bfs.dats │ │ │ └── GraphStreamize_dfs.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── KnightsTour_bfs.dats │ │ │ ├── KnightsTour_dfs.dats │ │ │ ├── Makefile │ │ │ ├── QueenPuzzle_bfs.dats │ │ │ └── QueenPuzzle_dfs.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── MergeSort │ │ ├── DATS │ │ │ ├── MergeSort_array.dats │ │ │ └── MergeSort_list.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── MergeSort_array_double.dats │ │ │ ├── MergeSort_array_int.dats │ │ │ ├── MergeSort_list_double.dats │ │ │ ├── MergeSort_list_int.dats │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ └── testlib.dats │ │ ├── mydepies.hats │ │ ├── mylibies.hats │ │ └── package.json │ ├── MergeSortPar │ │ ├── DATS │ │ │ ├── MergeSortPar_array.dats │ │ │ └── MergeSortPar_list.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── MergeSortPar_array_double.dats │ │ │ ├── MergeSortPar_array_int.dats │ │ │ ├── MergeSortPar_list_double.dats │ │ │ ├── MergeSortPar_list_int.dats │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ └── testlib.dats │ │ ├── mydepies.hats │ │ ├── mydepies_array.hats │ │ ├── mydepies_list.hats │ │ ├── mylibies.hats │ │ └── package.json │ ├── QuickSort │ │ ├── DATS │ │ │ └── QuickSort_array.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── QuickSort_array_double.dats │ │ │ ├── QuickSort_array_int.dats │ │ │ ├── test01.dats │ │ │ └── testlib.dats │ │ ├── mydepies.hats │ │ ├── mylibies.hats │ │ └── package.json │ ├── QuickSortPar │ │ ├── DATS │ │ │ └── QuickSortPar_array.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── QuickSortPar_array_double.dats │ │ │ ├── QuickSortPar_array_int.dats │ │ │ ├── test01.dats │ │ │ └── testlib.dats │ │ ├── mydepies.hats │ │ ├── mydepies_array.hats │ │ ├── mylibies.hats │ │ └── package.json │ ├── StreamPar │ │ ├── DATS │ │ │ └── StreamPar.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── Makefile │ │ │ └── test01.dats │ │ ├── mydepies.hats │ │ ├── mylibies.hats │ │ └── package.json │ └── parcomb │ │ └── DATS │ │ └── parcomb.dats ├── BUCS520 │ ├── Bartosz │ │ └── Poly │ │ │ ├── DATS │ │ │ └── basics.dats │ │ │ └── SATS │ │ │ └── basics.sats │ ├── DivideConquer │ │ ├── DATS │ │ │ └── DivideConquer.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── Makefile │ │ │ └── test01.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── DivideConquerLazy │ │ ├── DATS │ │ │ └── DivideConquerLazy.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── QueenPuzzle.dats │ │ │ └── test01.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── GraphStreamize │ │ ├── DATS │ │ │ ├── GraphStreamize.dats │ │ │ ├── GraphStreamize_bfs.dats │ │ │ └── GraphStreamize_dfs.dats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── QueenPuzzle_bfs.dats │ │ │ └── QueenPuzzle_dfs.dats │ │ ├── mylibies.hats │ │ └── package.json │ └── StreamPar │ │ ├── DATS │ │ └── StreamPar.dats │ │ ├── Makefile_test │ │ ├── TEST │ │ ├── DirWalk.dats │ │ ├── Makefile │ │ ├── MatMult.dats │ │ └── test01.dats │ │ ├── mydepies.hats │ │ ├── mylibies.hats │ │ └── package.json ├── CATS │ ├── deqarray.cats │ ├── dynarray.cats │ ├── hashfun.cats │ ├── qlist.cats │ ├── stkarray.cats │ └── stringbuf.cats ├── DATS │ ├── Number │ │ ├── SHARE │ │ │ ├── float.dats │ │ │ └── real.dats │ │ ├── float_double.dats │ │ └── real_double.dats │ ├── SHARE │ │ ├── fundeque.hats │ │ ├── funmap.hats │ │ ├── funmset.hats │ │ ├── funralist.hats │ │ ├── funset.hats │ │ ├── hashtbl.hats │ │ ├── linheap.hats │ │ ├── linmap.hats │ │ ├── linmap_node.hats │ │ ├── linset.hats │ │ └── linset_node.hats │ ├── athread.dats │ ├── athread_posix.dats │ ├── bitvec.dats │ ├── deqarray.dats │ ├── dllist.dats │ ├── dynarray.dats │ ├── funarray_braunt.dats │ ├── fundeque_fngtree.dats │ ├── funmap_avltree.dats │ ├── funmap_list.dats │ ├── funmap_rbtree.dats │ ├── funmset_listord.dats │ ├── funralist_nested.dats │ ├── funset_avltree.dats │ ├── funset_listord.dats │ ├── gfarray.dats │ ├── gflist.dats │ ├── gflist_vt.dats │ ├── gmatrix.dats │ ├── gmatrix_col.dats │ ├── gmatrix_row.dats │ ├── gnode.dats │ ├── gvector.dats │ ├── hashfun.dats │ ├── hashtbl_chain.dats │ ├── hashtbl_linprb.dats │ ├── ilist_prf.dats │ ├── lindeque_dllist.dats │ ├── linheap_binomial.dats │ ├── linheap_binomial2.dats │ ├── linheap_fibonacci.dats │ ├── linmap_avltree.dats │ ├── linmap_list.dats │ ├── linmap_randbst.dats │ ├── linmap_skiplist.dats │ ├── linralist_nested.dats │ ├── linset_avltree.dats │ ├── linset_listord.dats │ ├── qlist.dats │ ├── refcount.dats │ ├── sllist.dats │ ├── stkarray.dats │ ├── stklist.dats │ ├── stringbuf.dats │ ├── theGetters.dats │ └── typeval.dats ├── HTML │ ├── .keeper │ ├── ATSLIB_libats_all_in_one_html.php │ ├── ATSLIB_libats_all_in_one_raw.php │ ├── DATS │ │ └── .keeper │ ├── Makefile │ └── SATS │ │ └── .keeper ├── ML │ ├── CATS │ │ ├── array0.cats │ │ └── strarr.cats │ ├── COMPILE │ │ ├── DATS │ │ │ ├── array0.dats │ │ │ ├── funarray.dats │ │ │ ├── funmap.dats │ │ │ ├── hashtblref.dats │ │ │ └── string.dats │ │ └── mylibies.hats │ ├── DATS │ │ ├── SHARE │ │ │ └── monad.hats │ │ ├── argvec.dats │ │ ├── array0.dats │ │ ├── atspre.dats │ │ ├── dynarray.dats │ │ ├── filebas.dats │ │ ├── filebas_dirent.dats │ │ ├── funmap.dats │ │ ├── funset.dats │ │ ├── gvalue.dats │ │ ├── hashtblref.dats │ │ ├── intrange.dats │ │ ├── list0.dats │ │ ├── list0_vt.dats │ │ ├── matrix0.dats │ │ ├── monad_list.dats │ │ ├── monad_maybe.dats │ │ ├── option0.dats │ │ ├── qlistref.dats │ │ ├── slistref.dats │ │ ├── stdlib.dats │ │ ├── strarr.dats │ │ ├── stream.dats │ │ ├── stream_vt.dats │ │ └── string.dats │ ├── HATS │ │ ├── myfunmap.hats │ │ ├── myfunset.hats │ │ └── myhashtblref.hats │ ├── HTML │ │ ├── ATSLIB_libats_ML_all_in_one_html.php │ │ ├── ATSLIB_libats_ML_all_in_one_raw.php │ │ ├── DATS │ │ │ └── .keeper │ │ ├── Makefile │ │ └── SATS │ │ │ └── .keeper │ └── SATS │ │ ├── DOCUGEN │ │ ├── HTML │ │ │ └── .keeper │ │ ├── Makefile │ │ ├── Makefile.atxt │ │ ├── Makefile.gen │ │ ├── TRYIT │ │ │ └── .keeper │ │ ├── array0.atxt │ │ ├── basis.atxt │ │ ├── filebas.atxt │ │ ├── funmap.atxt │ │ ├── funset.atxt │ │ ├── hashtblref.atxt │ │ ├── list0.atxt │ │ ├── matrix0.atxt │ │ ├── monad_list.atxt │ │ ├── monad_maybe.atxt │ │ ├── option0.atxt │ │ ├── stdlib.atxt │ │ ├── strarr.atxt │ │ ├── string.atxt │ │ └── theDeclpostamble.html │ │ ├── SHARE │ │ └── monad.hats │ │ ├── argvec.sats │ │ ├── array0.sats │ │ ├── atspre.sats │ │ ├── basis.sats │ │ ├── dynarray.sats │ │ ├── filebas.sats │ │ ├── funmap.sats │ │ ├── funmset.sats │ │ ├── funset.sats │ │ ├── gvalue.sats │ │ ├── hashtblref.sats │ │ ├── intrange.sats │ │ ├── list0.sats │ │ ├── list0_vt.sats │ │ ├── matrix0.sats │ │ ├── monad_list.sats │ │ ├── monad_maybe.sats │ │ ├── option0.sats │ │ ├── qlistref.sats │ │ ├── slistref.sats │ │ ├── stdlib.sats │ │ ├── strarr.sats │ │ ├── stream.sats │ │ ├── stream_vt.sats │ │ └── string.sats ├── SATS │ ├── DOCUGEN │ │ ├── HTML │ │ │ └── .keeper │ │ ├── Makefile │ │ ├── Makefile.atxt │ │ ├── Makefile.gen │ │ ├── TRYIT │ │ │ └── .keeper │ │ ├── deqarray.atxt │ │ ├── dllist.atxt │ │ ├── dynarray.atxt │ │ ├── fundeque_fngtree.atxt │ │ ├── funmap_avltree.atxt │ │ ├── funmap_list.atxt │ │ ├── funralist_nested.atxt │ │ ├── funset_avltree.atxt │ │ ├── funset_listord.atxt │ │ ├── gfarray.atxt │ │ ├── gflist.atxt │ │ ├── gflist_vt.atxt │ │ ├── gmatrix.atxt │ │ ├── gmatrix_col.atxt │ │ ├── gmatrix_row.atxt │ │ ├── gnode.atxt │ │ ├── gvector.atxt │ │ ├── hashtbl_chain.atxt │ │ ├── ilist_prf.atxt │ │ ├── lindeque_dllist.atxt │ │ ├── linheap_binomial.atxt │ │ ├── linheap_fibonacci.atxt │ │ ├── linmap_avltree.atxt │ │ ├── linmap_list.atxt │ │ ├── linmap_randbst.atxt │ │ ├── linmap_skiplist.atxt │ │ ├── linralist_nested.atxt │ │ ├── linset_avltree.atxt │ │ ├── linset_listord.atxt │ │ ├── qlist.atxt │ │ ├── refcount.atxt │ │ ├── sllist.atxt │ │ ├── stkarray.atxt │ │ ├── stringbuf.atxt │ │ └── theDeclpostamble.html │ ├── Number │ │ ├── float.sats │ │ └── real.sats │ ├── SHARE │ │ ├── fundeque.hats │ │ ├── funmap.hats │ │ ├── funmset.hats │ │ ├── funralist.hats │ │ ├── funset.hats │ │ ├── hashtbl.hats │ │ ├── lindeque.hats │ │ ├── linheap.hats │ │ ├── linmap.hats │ │ ├── linmap_node.hats │ │ ├── linralist.hats │ │ ├── linset.hats │ │ └── linset_node.hats │ ├── athread.sats │ ├── bitvec.sats │ ├── deqarray.sats │ ├── dllist.sats │ ├── dynarray.sats │ ├── funarray.sats │ ├── fundeque_fngtree.sats │ ├── funmap_avltree.sats │ ├── funmap_list.sats │ ├── funmap_rbtree.sats │ ├── funmset_listord.sats │ ├── funralist_nested.sats │ ├── funset_avltree.sats │ ├── funset_listord.sats │ ├── gfarray.sats │ ├── gflist.sats │ ├── gflist_vt.sats │ ├── gmatrix.sats │ ├── gmatrix_col.sats │ ├── gmatrix_row.sats │ ├── gnode.sats │ ├── gvector.sats │ ├── hashfun.sats │ ├── hashtbl_chain.sats │ ├── hashtbl_linprb.sats │ ├── ilist_prf.sats │ ├── lindeque_dllist.sats │ ├── linheap_array.sats │ ├── linheap_binomial.sats │ ├── linheap_fibonacci.sats │ ├── linmap_avltree.sats │ ├── linmap_list.sats │ ├── linmap_randbst.sats │ ├── linmap_skiplist.sats │ ├── linralist_nested.sats │ ├── linset_avltree.sats │ ├── linset_listord.sats │ ├── qlist.sats │ ├── refcount.sats │ ├── sllist.sats │ ├── stkarray.sats │ ├── stklist.sats │ ├── stringbuf.sats │ ├── strobjref.sats │ ├── theGetters.sats │ └── typeval.sats ├── TEST │ ├── Makefile │ ├── test01-2022-07-11.dats │ ├── test02-2022-07-11.dats │ └── test03-2022-07-12.dats └── libc │ ├── CATS │ ├── alloca.cats │ ├── arpa │ │ └── inet.cats │ ├── dirent.cats │ ├── dlfcn.cats │ ├── errno.cats │ ├── fcntl.cats │ ├── float.cats │ ├── fnmatch.cats │ ├── gdbm │ │ ├── datum.cats │ │ └── gdbm.cats │ ├── malloc.cats │ ├── math.cats │ ├── netinet │ │ └── in.cats │ ├── signal.cats │ ├── stdio.cats │ ├── stdlib.cats │ ├── string.cats │ ├── strings.cats │ ├── sys │ │ ├── mman.cats │ │ ├── socket.cats │ │ ├── socket_in.cats │ │ ├── stat.cats │ │ ├── time.cats │ │ ├── types.cats │ │ └── wait.cats │ ├── time.cats │ └── unistd.cats │ ├── DATS │ ├── alloca.dats │ ├── arpa │ │ └── .keeper │ ├── dirent.dats │ ├── errno.dats │ ├── fcntl.dats │ ├── float.dats │ ├── gdbm │ │ └── .keeper │ ├── math.dats │ ├── netinet │ │ └── .keeper │ ├── stdio.dats │ ├── stdlib.dats │ ├── string.dats │ ├── strings.dats │ ├── sys │ │ ├── socket.dats │ │ ├── socket_in.dats │ │ ├── stat.dats │ │ └── types.dats │ ├── time.dats │ └── unistd.dats │ ├── HTML │ ├── .keeper │ ├── ATSLIB_libats_libc_all_in_one_html.php │ ├── ATSLIB_libats_libc_all_in_one_raw.php │ ├── DATS │ │ └── .keeper │ ├── Makefile │ └── SATS │ │ └── .keeper │ └── SATS │ ├── DOCUGEN │ ├── HTML │ │ └── .keeper │ ├── Makefile.atxt │ ├── Makefile.gen │ ├── TRYIT │ │ └── .keeper │ ├── alloca.atxt │ ├── dirent.atxt │ ├── fnmatch.atxt │ ├── malloc.atxt │ ├── math.atxt │ ├── signal.atxt │ ├── stdio.atxt │ ├── stdlib.atxt │ ├── string.atxt │ ├── strings.atxt │ ├── theDeclpostamble.dbook │ ├── theDeclpostamble.html │ └── unistd.atxt │ ├── alloca.sats │ ├── arpa │ └── inet.sats │ ├── dirent.sats │ ├── dlfcn.sats │ ├── errno.sats │ ├── fcntl.sats │ ├── float.sats │ ├── fnmatch.sats │ ├── gdbm │ ├── SHARE │ │ └── datum.hats │ ├── gdbm.sats │ └── ndbm.sats │ ├── malloc.sats │ ├── math.sats │ ├── netinet │ └── in.sats │ ├── signal.sats │ ├── stddef.sats │ ├── stdio.sats │ ├── stdlib.sats │ ├── string.sats │ ├── strings.sats │ ├── sys │ ├── DOCUGEN │ │ ├── Makefile.atxt │ │ ├── Makefile.gen │ │ ├── mman.atxt │ │ ├── stat.atxt │ │ ├── theDeclpostamble.html │ │ ├── types.atxt │ │ └── wait.atxt │ ├── mman.sats │ ├── socket.sats │ ├── socket_in.sats │ ├── stat.sats │ ├── time.sats │ ├── types.sats │ └── wait.sats │ ├── time.sats │ ├── unistd.sats │ ├── unistd_pathconf.sats │ └── unistd_sysconf.sats ├── nix ├── README.md ├── build.nix ├── default.nix ├── path_hack.sh ├── shell.nix └── tarball.nix ├── npm-utils ├── README └── contrib │ ├── Makefile_test │ ├── atscntrb │ ├── ats1-libatsopt │ │ ├── BUILD │ │ │ ├── DATS │ │ │ │ └── .keeper │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── README.md │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── patsopt.dats │ │ │ ├── patsopt_atscc2js.dats │ │ │ └── patsopt_ccomp.dats │ │ ├── ccomp │ │ │ └── atslib │ │ │ │ └── lib │ │ │ │ └── .keeper │ │ └── package.json │ ├── atscntrb-hx-libcairo │ │ ├── CATS │ │ │ ├── CODEGEN │ │ │ │ ├── Makefile │ │ │ │ ├── cairo.atxt │ │ │ │ └── cairo.cats │ │ │ └── cairo.cats │ │ ├── DATS │ │ │ └── cairo.dats │ │ ├── Makefile_test │ │ ├── SATS │ │ │ ├── DOCUGEN │ │ │ │ ├── HTML │ │ │ │ │ └── .keeper │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.atxt │ │ │ │ ├── Makefile.gen │ │ │ │ ├── cairo-Image-Surfaces.atxt │ │ │ │ ├── cairo-PDF-Surfaces.atxt │ │ │ │ ├── cairo-PNG-Support.atxt │ │ │ │ ├── cairo-Paths.atxt │ │ │ │ ├── cairo-PostScript-Surfaces.atxt │ │ │ │ ├── cairo-Regions.atxt │ │ │ │ ├── cairo-Transformations.atxt │ │ │ │ ├── cairo-cairo-device-t.atxt │ │ │ │ ├── cairo-cairo-matrix-t.atxt │ │ │ │ ├── cairo-cairo-pattern-t.atxt │ │ │ │ ├── cairo-cairo-surface-t.atxt │ │ │ │ ├── cairo-cairo-t.atxt │ │ │ │ ├── cairo.atxt │ │ │ │ ├── mybasis.atxt │ │ │ │ └── theDeclpostamble.html │ │ │ ├── Drawing │ │ │ │ ├── cairo-Paths.sats │ │ │ │ ├── cairo-Raster-Sources.sats │ │ │ │ ├── cairo-Regions.sats │ │ │ │ ├── cairo-Transformations.sats │ │ │ │ ├── cairo-cairo-pattern-t.sats │ │ │ │ ├── cairo-cairo-t.sats │ │ │ │ └── cairo-text.sats │ │ │ ├── Fonts │ │ │ │ └── cairo-cairo-font-face-t.sats │ │ │ ├── Surfaces │ │ │ │ ├── cairo-Image-Surfaces.sats │ │ │ │ ├── cairo-PDF-Surfaces.sats │ │ │ │ ├── cairo-PNG-Support.sats │ │ │ │ ├── cairo-PostScript-Surfaces.sats │ │ │ │ ├── cairo-cairo-device-t.sats │ │ │ │ └── cairo-cairo-surface-t.sats │ │ │ ├── Utilities │ │ │ │ ├── cairo-Error-Handling.sats │ │ │ │ ├── cairo-Types.sats │ │ │ │ └── cairo-cairo-matrix-t.sats │ │ │ ├── cairo.sats │ │ │ └── mybasis.sats │ │ ├── TEST │ │ │ ├── DATA │ │ │ │ └── zoe-2006-05-27-1.png │ │ │ ├── Makefile │ │ │ ├── cairo-Bulge02c.dats │ │ │ ├── cairo-multable.dats │ │ │ ├── test00.dats │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ ├── test03.dats │ │ │ ├── test04.dats │ │ │ ├── test05-1.dats │ │ │ ├── test05-2.dats │ │ │ ├── test06.dats │ │ │ ├── test07.dats │ │ │ ├── test08.dats │ │ │ └── test09.dats │ │ ├── TUTORIAL │ │ │ ├── ATEXT │ │ │ │ ├── ats2cairo.dats │ │ │ │ ├── chap_drawline.atxt │ │ │ │ ├── chap_drawrectcirc.atxt │ │ │ │ ├── chap_drawtext.atxt │ │ │ │ ├── chap_funtypes.atxt │ │ │ │ ├── chap_hello.atxt │ │ │ │ └── chap_objtypes.atxt │ │ │ ├── CODE │ │ │ │ ├── Makefile │ │ │ │ ├── illucircmot.dats │ │ │ │ ├── illuwavy.dats │ │ │ │ ├── tutprog_hello.dats │ │ │ │ ├── tutprog_linecap.dats │ │ │ │ ├── tutprog_linejoin.dats │ │ │ │ ├── tutprog_showtext.dats │ │ │ │ ├── tutprog_sqrcirc.dats │ │ │ │ └── tutprog_triangle.dats │ │ │ ├── IMAGE │ │ │ │ ├── illucircmot.png │ │ │ │ ├── illuwavy.png │ │ │ │ ├── tutprog_hello.png │ │ │ │ ├── tutprog_linecap.png │ │ │ │ ├── tutprog_linejoin.png │ │ │ │ ├── tutprog_showtext.png │ │ │ │ └── tutprog_sqrcirc.png │ │ │ ├── Makefile │ │ │ ├── bookinfo.db │ │ │ ├── main.db │ │ │ └── preface.db │ │ ├── mylibies.hats │ │ └── package.json │ ├── atscntrb-hx-libev │ │ ├── CATS │ │ │ └── ev.cats │ │ ├── DATS │ │ │ └── ev.dats │ │ ├── Makefile_test │ │ ├── SATS │ │ │ └── ev.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test00-reloc.dats │ │ │ ├── test00.dats │ │ │ └── test01.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── atscntrb-hx-libevent │ │ ├── CATS │ │ │ └── event.cats │ │ ├── DATS │ │ │ └── .keeper │ │ ├── Makefile_test │ │ ├── SATS │ │ │ ├── DOCUGEN │ │ │ │ ├── HTML │ │ │ │ │ └── .keeper │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.atxt │ │ │ │ ├── Makefile.gen │ │ │ │ └── event.atxt │ │ │ ├── buffer.sats │ │ │ ├── event.sats │ │ │ └── http.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test00-atsreloc.dats │ │ │ ├── test00.dats │ │ │ └── test_download.dats │ │ ├── mylibies.hats │ │ └── package.json │ ├── atscntrb-hx-libsdl2 │ │ ├── CATS │ │ │ ├── SDL.cats │ │ │ ├── SDL_error.cats │ │ │ ├── SDL_events.cats │ │ │ ├── SDL_image.cats │ │ │ ├── SDL_render.cats │ │ │ ├── SDL_rwops.cats │ │ │ ├── SDL_surface.cats │ │ │ ├── SDL_timer.cats │ │ │ ├── SDL_version.cats │ │ │ └── SDL_video.cats │ │ ├── DATS │ │ │ └── SDL2.dats │ │ ├── Makefile_test │ │ ├── SATS │ │ │ ├── DOCUGEN │ │ │ │ ├── HTML │ │ │ │ │ └── .keeper │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.atxt │ │ │ │ ├── Makefile.gen │ │ │ │ ├── SDL.atxt │ │ │ │ ├── SDL_error.atxt │ │ │ │ ├── SDL_events.atxt │ │ │ │ ├── SDL_render.atxt │ │ │ │ ├── SDL_surface.atxt │ │ │ │ ├── SDL_timer.atxt │ │ │ │ ├── SDL_version.atxt │ │ │ │ ├── SDL_video.atxt │ │ │ │ ├── mybasis.atxt │ │ │ │ └── theDeclpostamble.html │ │ │ ├── SDL.sats │ │ │ ├── SDL_error.sats │ │ │ ├── SDL_events.sats │ │ │ ├── SDL_image.sats │ │ │ ├── SDL_render.sats │ │ │ ├── SDL_rwops.sats │ │ │ ├── SDL_surface.sats │ │ │ ├── SDL_timer.sats │ │ │ ├── SDL_version.sats │ │ │ ├── SDL_video.sats │ │ │ └── mybasis.sats │ │ ├── TEST │ │ │ ├── DATA │ │ │ │ ├── hello_world.bmp │ │ │ │ └── zoe-2005-10-19-1.png │ │ │ ├── Makefile │ │ │ ├── test00.dats │ │ │ ├── test01.dats │ │ │ └── test02.dats │ │ └── package.json │ └── atscntrb-hx-libxml2 │ │ ├── libxml │ │ ├── CATS │ │ │ ├── HTMLparser.cats │ │ │ ├── parser.cats │ │ │ ├── tree.cats │ │ │ ├── xml0.cats │ │ │ └── xpath.cats │ │ ├── DATS │ │ │ └── xml0.dats │ │ ├── Makefile_test │ │ ├── SATS │ │ │ ├── HTMLparser.sats │ │ │ ├── parser.sats │ │ │ ├── tree.sats │ │ │ ├── xml0.sats │ │ │ └── xpath.sats │ │ ├── TEST │ │ │ ├── DATA │ │ │ │ └── atslangweb_home.html │ │ │ ├── Makefile │ │ │ ├── htmlParseDoc.dats │ │ │ └── htmlTreeWalk.dats │ │ └── mylibies.hats │ │ └── package.json │ ├── libats- │ └── hwxi │ │ ├── Andes │ │ ├── DATS │ │ │ └── andes_comp_util.dats │ │ ├── SATS │ │ │ └── andes_comp.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test00.dats │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ ├── test03.dats │ │ │ ├── test04.dats │ │ │ ├── test05.dats │ │ │ └── test06.dats │ │ ├── mylibies.dats │ │ └── mylibies.sats │ │ ├── HTML-emscripten │ │ ├── CATS_JS │ │ │ └── HTMLdocument.js │ │ ├── SATS │ │ │ └── document.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── quicksort_anim.dats │ │ │ ├── quicksort_anim.html │ │ │ ├── quicksort_anim_lib.js │ │ │ ├── test01.dats │ │ │ └── test01.html │ │ └── canvas-2d │ │ │ ├── CATS_JS │ │ │ └── HTML5canvas2d.js │ │ │ └── SATS │ │ │ └── canvas2d.sats │ │ ├── OpenSCAD │ │ ├── DATS │ │ │ ├── OpenSCAD_argenv.dats │ │ │ ├── OpenSCAD_emit.dats │ │ │ ├── OpenSCAD_label.dats │ │ │ ├── OpenSCAD_main.dats │ │ │ ├── OpenSCAD_meta.dats │ │ │ ├── OpenSCAD_print.dats │ │ │ └── OpenSCAD_util.dats │ │ ├── README.md │ │ ├── SATS │ │ │ ├── OpenSCAD.sats │ │ │ ├── OpenSCAD_meta.sats │ │ │ └── OpenSCAD_util.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── output │ │ │ │ └── .keeper │ │ │ ├── pepperfish-camera.dats │ │ │ ├── test00.dats │ │ │ ├── test01.dats │ │ │ ├── test02.dats │ │ │ ├── test03.dats │ │ │ ├── test04.dats │ │ │ ├── test04.html │ │ │ ├── test05.dats │ │ │ └── test05.html │ │ ├── mylibies.hats │ │ ├── mylibies_link.hats │ │ └── package.json │ │ ├── fileAsLock │ │ ├── DATS │ │ │ └── fileAsLock.dats │ │ ├── SATS │ │ │ └── fileAsLock.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ └── testlock.dats │ │ ├── mylibies.hats │ │ └── package.json │ │ ├── find_cli │ │ ├── DATS │ │ │ └── find_cli.dats │ │ ├── Makefile_test │ │ ├── README.md │ │ ├── TEST │ │ │ ├── Makefile │ │ │ └── test01.dats │ │ ├── mylibies.hats │ │ └── package.json │ │ ├── fworkshop │ │ ├── DATS │ │ │ ├── fworkshop.dats │ │ │ ├── fworkshop_chanlst.dats │ │ │ └── fworkshop_channel.dats │ │ ├── Makefile_test │ │ ├── README │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test01.dats │ │ │ └── test02.dats │ │ ├── mydepies.hats │ │ ├── mylibies.hats │ │ └── package.json │ │ ├── jsonats │ │ ├── DATS │ │ │ └── jsonats.dats │ │ ├── SATS │ │ │ └── jsonats.sats │ │ ├── TEST │ │ │ ├── DATA │ │ │ │ └── atsreloc.json │ │ │ ├── Makefile │ │ │ ├── test01.dats │ │ │ └── test02.dats │ │ ├── mylibies.hats │ │ ├── mylibies_link.hats │ │ └── package.json │ │ ├── kernelats │ │ ├── ccomp │ │ │ ├── pats_ccomp.h │ │ │ └── pats_ccomp2.h │ │ ├── package.json │ │ └── prelude │ │ │ ├── CATS │ │ │ ├── array.cats │ │ │ ├── arrayptr.cats │ │ │ ├── arrayref.cats │ │ │ ├── bool.cats │ │ │ ├── char.cats │ │ │ ├── integer.cats │ │ │ ├── integer_fixed.cats │ │ │ ├── integer_long.cats │ │ │ ├── integer_short.cats │ │ │ ├── integer_size.cats │ │ │ ├── memory.cats │ │ │ ├── pointer.cats │ │ │ └── string.cats │ │ │ └── staloadall.hats │ │ ├── kparcomb │ │ ├── DATS │ │ │ └── kparcomb.dats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ └── tokenizer.dats │ │ ├── mydepies.dats │ │ ├── mylibies.dats │ │ └── package.json │ │ ├── mysession-2 │ │ ├── DATS │ │ │ ├── array.dats │ │ │ ├── basis_chan0.dats │ │ │ ├── basis_ssntyp.dats │ │ │ ├── basis_uchan.dats │ │ │ ├── co-list.dats │ │ │ └── list.dats │ │ ├── Makefile_test │ │ ├── README.md │ │ ├── SATS │ │ │ ├── array.sats │ │ │ ├── basis.sats │ │ │ ├── basis_ext.sats │ │ │ ├── co-list.sats │ │ │ └── list.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── bitstr.dats │ │ │ ├── mergesort.dats │ │ │ ├── mergesort2.dats │ │ │ └── sieve.dats │ │ └── package.json │ │ ├── mysession-g │ │ ├── DATS │ │ │ ├── basis_channel0.dats │ │ │ ├── basis_channel1.dats │ │ │ ├── basis_intset.dats │ │ │ ├── basis_ssntype2r.dats │ │ │ └── basis_uchan.dats │ │ ├── Makefile_test │ │ ├── README.md │ │ ├── SATS │ │ │ ├── basis_intset.sats │ │ │ ├── basis_ssntype.sats │ │ │ └── basis_ssntype2r.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── S0B1B2-pastebin.dats │ │ │ ├── S0B1B2.dats │ │ │ ├── S0B1B2_rec.dats │ │ │ ├── bitstr.dats │ │ │ ├── intset.dats │ │ │ ├── sieve.dats │ │ │ ├── test01-2p.dats │ │ │ ├── test02-2p.dats │ │ │ ├── test02-3p.dats │ │ │ ├── test03-4p.dats │ │ │ └── test_mylib.dats │ │ ├── mylibies.hats │ │ └── package.json │ │ ├── parcomb │ │ ├── DATS │ │ │ └── parcomb.dats │ │ ├── README.md │ │ ├── SATS │ │ │ └── parcomb.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── lambda-stfp.dats │ │ │ └── tokenizer.dats │ │ ├── mydepies.dats │ │ ├── mylibies.dats │ │ ├── mylibies.hats │ │ ├── mylibies.sats │ │ └── package.json │ │ ├── polyglot │ │ ├── DATS │ │ │ └── polyglot.dats │ │ ├── Makefile_test │ │ ├── README.md │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test01.dats │ │ │ └── test02.dats │ │ ├── mylibies.hats │ │ ├── mylibies_link.hats │ │ └── package.json │ │ ├── teaching │ │ ├── BUCS │ │ │ ├── DATS │ │ │ │ ├── BUCS320.dats │ │ │ │ ├── BUCS520-2016-Fall.dats │ │ │ │ ├── BUCS520-2018-Spring.dats │ │ │ │ └── BUCS520.dats │ │ │ ├── Makefile_test │ │ │ ├── TEST │ │ │ │ ├── Makefile │ │ │ │ ├── test01.dats │ │ │ │ ├── test_download.dats │ │ │ │ ├── test_find.dats │ │ │ │ ├── test_intinf.dats │ │ │ │ └── test_which.dats │ │ │ ├── mylibies.hats │ │ │ ├── mylibies_link.hats │ │ │ └── package.json │ │ ├── mydraw │ │ │ ├── CATS_JS │ │ │ │ └── mydraw_HTML5_canvas2d.js │ │ │ ├── DATS │ │ │ │ ├── mydraw.dats │ │ │ │ ├── mydraw_HTML5_canvas2d.dats │ │ │ │ ├── mydraw_bargraph.dats │ │ │ │ ├── mydraw_cairo.dats │ │ │ │ └── mydraw_matgraph.dats │ │ │ ├── Makefile_test │ │ │ ├── SATS │ │ │ │ ├── mydraw.sats │ │ │ │ ├── mydraw_HTML5_canvas2d.sats │ │ │ │ └── mydraw_cairo.sats │ │ │ ├── TEST │ │ │ │ ├── Makefile │ │ │ │ ├── test01-cairo.dats │ │ │ │ ├── test01-canvas2d.dats │ │ │ │ ├── test01.dats │ │ │ │ ├── test01.html │ │ │ │ ├── test02-cairo.dats │ │ │ │ ├── test02-canvas2d.dats │ │ │ │ ├── test02.dats │ │ │ │ ├── test02.html │ │ │ │ ├── test03-cairo.dats │ │ │ │ ├── test03-canvas2d.dats │ │ │ │ ├── test03.dats │ │ │ │ ├── test03.html │ │ │ │ ├── test04-cairo.dats │ │ │ │ ├── test04-canvas2d.dats │ │ │ │ ├── test04.dats │ │ │ │ └── test04.html │ │ │ ├── mylibies.hats │ │ │ └── package.json │ │ ├── mydraw2 │ │ │ ├── DATS │ │ │ │ ├── mydraw2.dats │ │ │ │ └── mydraw2_meta.dats │ │ │ ├── README.md │ │ │ ├── TEST │ │ │ │ ├── Makefile │ │ │ │ └── test00.dats │ │ │ └── mylibies.hats │ │ ├── myintinf │ │ │ ├── DATS │ │ │ │ └── myintinf_t.dats │ │ │ └── TEST │ │ │ │ ├── Makefile │ │ │ │ ├── test01.dats │ │ │ │ └── test02.dats │ │ └── mythread │ │ │ ├── DATS │ │ │ ├── channel.dats │ │ │ ├── channel_vt.dats │ │ │ ├── nwaiter.dats │ │ │ ├── parallelize.dats │ │ │ ├── spinref.dats │ │ │ ├── spinvar.dats │ │ │ └── workshop.dats │ │ │ ├── Makefile_test │ │ │ ├── SATS │ │ │ ├── channel.sats │ │ │ ├── channel_vt.sats │ │ │ ├── nwaiter.sats │ │ │ ├── parallelize.sats │ │ │ ├── spinref.sats │ │ │ ├── spinvar.sats │ │ │ └── workshop.sats │ │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test_nwaiter.dats │ │ │ ├── test_spinref.dats │ │ │ └── test_workshop.dats │ │ │ ├── mylibies.hats │ │ │ └── package.json │ │ ├── threadkit │ │ ├── DATS │ │ │ ├── chanlst_t.dats │ │ │ ├── channel_t.dats │ │ │ ├── channel_vt.dats │ │ │ ├── nwaiter.dats │ │ │ ├── spinref.dats │ │ │ └── spinvar.dats │ │ ├── Makefile_test │ │ ├── SATS │ │ │ ├── chanlst_t.sats │ │ │ ├── channel_t.sats │ │ │ ├── channel_vt.sats │ │ │ ├── nwaiter.sats │ │ │ ├── spinref.sats │ │ │ └── spinvar.sats │ │ ├── TEST │ │ │ ├── Makefile │ │ │ ├── test01.dats │ │ │ └── test02.dats │ │ ├── mylibies.hats │ │ └── package.json │ │ └── weboxy │ │ ├── DATS │ │ └── weboxy.dats │ │ ├── Makefile_test │ │ ├── README │ │ ├── TEST │ │ ├── ATS2LANG_layout.dats │ │ ├── BUCS320_layout.dats │ │ ├── Makefile │ │ └── params.hats │ │ ├── mydepies.hats │ │ ├── mylibies.dats │ │ └── package.json │ └── libats-hwxi ├── prelude ├── CATS │ ├── CODEGEN │ │ ├── Makefile │ │ ├── Makefile.atxt │ │ ├── Makefile.gen │ │ ├── README │ │ ├── array.atxt │ │ ├── arrayptr.atxt │ │ ├── arrayref.atxt │ │ ├── basics.atxt │ │ ├── bool.atxt │ │ ├── char.atxt │ │ ├── filebas.atxt │ │ ├── float.atxt │ │ ├── fprintf.atxt │ │ ├── integer.atxt │ │ ├── integer_fixed.atxt │ │ ├── integer_long.atxt │ │ ├── integer_ptr.atxt │ │ ├── integer_short.atxt │ │ ├── integer_size.atxt │ │ ├── list.atxt │ │ ├── list_vt.atxt │ │ ├── matrix.atxt │ │ ├── matrixptr.atxt │ │ ├── matrixref.atxt │ │ ├── memory.atxt │ │ ├── option.atxt │ │ ├── pointer.atxt │ │ ├── prelude_CATS_atext.hats │ │ ├── string.atxt │ │ └── strptr.atxt │ ├── array.cats │ ├── arrayptr.cats │ ├── arrayref.cats │ ├── basics.cats │ ├── bool.cats │ ├── char.cats │ ├── filebas.cats │ ├── float.cats │ ├── fprintf.cats │ ├── integer.cats │ ├── integer_fixed.cats │ ├── integer_long.cats │ ├── integer_ptr.cats │ ├── integer_short.cats │ ├── integer_size.cats │ ├── list.cats │ ├── list_vt.cats │ ├── matrix.cats │ ├── matrixptr.cats │ ├── matrixref.cats │ ├── memory.cats │ ├── option.cats │ ├── pointer.cats │ ├── string.cats │ └── strptr.cats ├── DATS │ ├── CODEGEN │ │ ├── Makefile │ │ ├── Makefile.atxt │ │ ├── Makefile.gen │ │ ├── arith_prf.atxt │ │ ├── array.atxt │ │ ├── array_prf.atxt │ │ ├── arrayptr.atxt │ │ ├── arrayref.atxt │ │ ├── basics.atxt │ │ ├── bool.atxt │ │ ├── char.atxt │ │ ├── checkast.atxt │ │ ├── filebas.atxt │ │ ├── filebas_dirent.atxt │ │ ├── filebas_prf.atxt │ │ ├── float.atxt │ │ ├── gnumber.atxt │ │ ├── gorder.atxt │ │ ├── gprint.atxt │ │ ├── grandom.atxt │ │ ├── integer.atxt │ │ ├── integer_fixed.atxt │ │ ├── integer_long.atxt │ │ ├── integer_ptr.atxt │ │ ├── integer_short.atxt │ │ ├── integer_size.atxt │ │ ├── intrange.atxt │ │ ├── list.atxt │ │ ├── list_vt.atxt │ │ ├── matrix.atxt │ │ ├── matrixptr.atxt │ │ ├── matrixref.atxt │ │ ├── memory.atxt │ │ ├── option.atxt │ │ ├── option_vt.atxt │ │ ├── parray.atxt │ │ ├── pointer.atxt │ │ ├── prelude_DATS_atext.hats │ │ ├── reference.atxt │ │ ├── stream.atxt │ │ ├── stream_vt.atxt │ │ ├── string.atxt │ │ ├── strptr.atxt │ │ ├── tostring.atxt │ │ ├── tuple.atxt │ │ └── unsafe.atxt │ ├── SHARE │ │ ├── CODEGEN │ │ │ ├── Makefile │ │ │ ├── Makefile.atxt │ │ │ ├── Makefile.gen │ │ │ ├── array_bsearch.atxt │ │ │ ├── array_quicksort.atxt │ │ │ ├── gnumber_float.atxt │ │ │ ├── gnumber_int.atxt │ │ │ ├── gnumber_uint.atxt │ │ │ ├── gorder_bool.atxt │ │ │ ├── gorder_char.atxt │ │ │ ├── gorder_float.atxt │ │ │ ├── gorder_int.atxt │ │ │ ├── gorder_string.atxt │ │ │ ├── gorder_uint.atxt │ │ │ ├── list_vt_mergesort.atxt │ │ │ └── list_vt_quicksort.atxt │ │ ├── array_bsearch.dats │ │ ├── array_quicksort.dats │ │ ├── gnumber_float.dats │ │ ├── gnumber_int.dats │ │ ├── gnumber_uint.dats │ │ ├── gorder_bool.dats │ │ ├── gorder_char.dats │ │ ├── gorder_float.dats │ │ ├── gorder_int.dats │ │ ├── gorder_string.dats │ │ ├── gorder_uint.dats │ │ ├── list_vt_mergesort.dats │ │ └── list_vt_quicksort.dats │ ├── arith_prf.dats │ ├── array.dats │ ├── array_prf.dats │ ├── arrayptr.dats │ ├── arrayref.dats │ ├── basics.dats │ ├── bool.dats │ ├── char.dats │ ├── checkast.dats │ ├── filebas.dats │ ├── filebas_dirent.dats │ ├── filebas_prf.dats │ ├── float.dats │ ├── gnumber.dats │ ├── gorder.dats │ ├── gprint.dats │ ├── grandom.dats │ ├── integer.dats │ ├── integer_fixed.dats │ ├── integer_long.dats │ ├── integer_ptr.dats │ ├── integer_short.dats │ ├── integer_size.dats │ ├── intrange.dats │ ├── list.dats │ ├── list_vt.dats │ ├── matrix.dats │ ├── matrixptr.dats │ ├── matrixref.dats │ ├── memory.dats │ ├── option.dats │ ├── option_vt.dats │ ├── parray.dats │ ├── pointer.dats │ ├── reference.dats │ ├── stream.dats │ ├── stream_vt.dats │ ├── string.dats │ ├── strptr.dats │ ├── tostring.dats │ ├── tuple.dats │ └── unsafe.dats ├── HTML │ ├── .gitignore │ ├── ATSPRE_all_in_one_html.php │ ├── ATSPRE_all_in_one_raw.php │ ├── DATS │ │ └── .keeper │ ├── Makefile │ └── SATS │ │ └── .keeper ├── SATS │ ├── CODEGEN │ │ ├── Makefile │ │ ├── Makefile.atxt │ │ ├── Makefile.gen │ │ ├── README │ │ ├── arith_prf.atxt │ │ ├── array.atxt │ │ ├── array_prf.atxt │ │ ├── arrayptr.atxt │ │ ├── arrayref.atxt │ │ ├── bool.atxt │ │ ├── char.atxt │ │ ├── checkast.atxt │ │ ├── extern.atxt │ │ ├── filebas.atxt │ │ ├── float.atxt │ │ ├── gnumber.atxt │ │ ├── gorder.atxt │ │ ├── gprint.atxt │ │ ├── grandom.atxt │ │ ├── integer.atxt │ │ ├── integer_fixed.atxt │ │ ├── integer_long.atxt │ │ ├── integer_ptr.atxt │ │ ├── integer_short.atxt │ │ ├── integer_size.atxt │ │ ├── intrange.atxt │ │ ├── list.atxt │ │ ├── list_vt.atxt │ │ ├── matrix.atxt │ │ ├── matrixptr.atxt │ │ ├── matrixref.atxt │ │ ├── memory.atxt │ │ ├── option.atxt │ │ ├── option_vt.atxt │ │ ├── parray.atxt │ │ ├── pointer.atxt │ │ ├── prelude_SATS_atext.hats │ │ ├── reference.atxt │ │ ├── stream.atxt │ │ ├── stream_vt.atxt │ │ ├── string.atxt │ │ ├── strptr.atxt │ │ ├── tostring.atxt │ │ ├── tuple.atxt │ │ └── unsafe.atxt │ ├── DOCUGEN │ │ ├── DBOOK │ │ │ ├── HTML │ │ │ │ └── .keeper │ │ │ └── Makefile │ │ ├── HTML │ │ │ └── .keeper │ │ ├── Makefile.atxt │ │ ├── Makefile.gen │ │ ├── Makefile_html.atxt │ │ ├── TRYIT │ │ │ └── .keeper │ │ ├── arith_prf.atxt │ │ ├── array.atxt │ │ ├── array_prf.atxt │ │ ├── arrayptr.atxt │ │ ├── arrayref.atxt │ │ ├── bool.atxt │ │ ├── char.atxt │ │ ├── checkast.atxt │ │ ├── fcontainer.atxt │ │ ├── filebas.atxt │ │ ├── float.atxt │ │ ├── giterator.atxt │ │ ├── gprint.atxt │ │ ├── integer.atxt │ │ ├── intrange.atxt │ │ ├── list.atxt │ │ ├── list_vt.atxt │ │ ├── matrix.atxt │ │ ├── matrixptr.atxt │ │ ├── matrixref.atxt │ │ ├── memory.atxt │ │ ├── option.atxt │ │ ├── option_vt.atxt │ │ ├── pointer.atxt │ │ ├── reference.atxt │ │ ├── stream.atxt │ │ ├── stream_vt.atxt │ │ ├── string.atxt │ │ ├── strptr.atxt │ │ ├── theDeclpostamble.html │ │ ├── tuple.atxt │ │ └── unsafe.atxt │ ├── arith_prf.sats │ ├── array.sats │ ├── array_prf.sats │ ├── arrayptr.sats │ ├── arrayref.sats │ ├── bool.sats │ ├── char.sats │ ├── checkast.sats │ ├── extern.sats │ ├── filebas.sats │ ├── float.sats │ ├── gnumber.sats │ ├── gorder.sats │ ├── gprint.sats │ ├── grandom.sats │ ├── integer.sats │ ├── integer_fixed.sats │ ├── integer_long.sats │ ├── integer_ptr.sats │ ├── integer_short.sats │ ├── integer_size.sats │ ├── intrange.sats │ ├── list.sats │ ├── list_vt.sats │ ├── matrix.sats │ ├── matrixptr.sats │ ├── matrixref.sats │ ├── memory.sats │ ├── option.sats │ ├── option_vt.sats │ ├── parray.sats │ ├── pointer.sats │ ├── reference.sats │ ├── stream.sats │ ├── stream_vt.sats │ ├── string.sats │ ├── strptr.sats │ ├── tostring.sats │ ├── tuple.sats │ └── unsafe.sats ├── basics_dyn.sats ├── basics_gen.sats ├── basics_pre.sats ├── basics_sta.sats ├── codegen2.sats ├── fixity.ats ├── lmacrodef.hats ├── macrodef.sats └── params.hats ├── share ├── DOCUGEN │ ├── declatext.dats │ ├── declatext.sats │ ├── htmlgendecl.atxt │ ├── htmlgendecl.dats │ └── htmlgendecl.sats ├── H │ └── pats_atslib.h ├── HATS │ ├── atslib_staload_libats_libc.hats │ ├── atspre_define_pkgreloc.hats │ ├── atspre_staload_libats_ML.hats │ └── atspre_staload_prelude.hats ├── Makefile.gen ├── SCRIPT │ ├── .keeper │ ├── Makefile │ ├── build_release-2018-12-09.sh │ └── build_release.sh ├── atsmake-post.mk ├── atsmake-pre.mk ├── atspre_define.hats ├── atspre_staload.hats └── atspre_staload_libats_ML.hats ├── shell.nix ├── src ├── CBOOT │ ├── JS │ │ └── Makefile │ ├── README │ ├── ccomp │ │ └── runtime │ │ │ ├── GCATS │ │ │ ├── gcats1.cats │ │ │ ├── gcats1_master.hats │ │ │ ├── m32 │ │ │ │ ├── .keeper │ │ │ │ ├── gcats1_autops_dats.c │ │ │ │ ├── gcats1_chunk_dats.c │ │ │ │ ├── gcats1_collecting_dats.c │ │ │ │ ├── gcats1_freeitmlst_dats.c │ │ │ │ ├── gcats1_globalentry_dats.c │ │ │ │ ├── gcats1_manops_dats.c │ │ │ │ ├── gcats1_marking_dats.c │ │ │ │ ├── gcats1_misc_dats.c │ │ │ │ └── gcats1_top_dats.c │ │ │ └── m64 │ │ │ │ ├── .keeper │ │ │ │ ├── gcats1_autops_dats.c │ │ │ │ ├── gcats1_chunk_dats.c │ │ │ │ ├── gcats1_collecting_dats.c │ │ │ │ ├── gcats1_freeitmlst_dats.c │ │ │ │ ├── gcats1_globalentry_dats.c │ │ │ │ ├── gcats1_manops_dats.c │ │ │ │ ├── gcats1_marking_dats.c │ │ │ │ ├── gcats1_misc_dats.c │ │ │ │ └── gcats1_top_dats.c │ │ │ ├── ats_basics.h │ │ │ ├── ats_config.h │ │ │ ├── ats_exception.h │ │ │ ├── ats_memory.h │ │ │ ├── ats_prelude.c │ │ │ ├── ats_prelude_gcats.c │ │ │ ├── ats_prelude_gcbdw.c │ │ │ ├── ats_prelude_ngc.c │ │ │ ├── ats_types.h │ │ │ └── gcats1_all.cats │ ├── config.h │ ├── libats │ │ ├── CATS │ │ │ ├── hashtable_chain.cats │ │ │ ├── linqueue_arr.cats │ │ │ └── linqueue_lst.cats │ │ ├── Makefile │ │ └── ngc │ │ │ └── CATS │ │ │ └── deque_arr.cats │ ├── libc │ │ ├── CATS │ │ │ ├── errno.cats │ │ │ ├── fcntl.cats │ │ │ ├── gmp.cats │ │ │ ├── stdarg.cats │ │ │ ├── stdio.cats │ │ │ ├── stdlib.cats │ │ │ ├── string.cats │ │ │ ├── time.cats │ │ │ └── unistd.cats │ │ ├── Makefile │ │ └── sys │ │ │ └── CATS │ │ │ ├── stat.cats │ │ │ ├── types.cats │ │ │ └── wait.cats │ └── prelude │ │ ├── CATS │ │ ├── array.cats │ │ ├── basics.cats │ │ ├── bool.cats │ │ ├── byte.cats │ │ ├── char.cats │ │ ├── float.cats │ │ ├── integer.cats │ │ ├── integer_fixed.cats │ │ ├── integer_ptr.cats │ │ ├── lazy.cats │ │ ├── lazy_vt.cats │ │ ├── list.cats │ │ ├── matrix.cats │ │ ├── option.cats │ │ ├── pointer.cats │ │ ├── printf.cats │ │ ├── reference.cats │ │ ├── sizetype.cats │ │ └── string.cats │ │ └── Makefile ├── CMKBLD │ └── .gitignore ├── CMakeLists.txt ├── Makefile ├── Makefile.atxt ├── Makefile.gen ├── Makefile_CBOOTgmp ├── Makefile_CBOOTint ├── pats_atspre.dats ├── pats_basics.dats ├── pats_basics.hats ├── pats_basics.sats ├── pats_ccomp.dats ├── pats_ccomp.sats ├── pats_ccomp_caseof.dats ├── pats_ccomp_ccompenv.dats ├── pats_ccomp_claulst.dats ├── pats_ccomp_d2env.dats ├── pats_ccomp_decl.dats ├── pats_ccomp_dynexp.dats ├── pats_ccomp_emit.dats ├── pats_ccomp_emit2.dats ├── pats_ccomp_emit3.dats ├── pats_ccomp_environ.dats ├── pats_ccomp_funent.dats ├── pats_ccomp_funlab.dats ├── pats_ccomp_hipat.dats ├── pats_ccomp_hitype.dats ├── pats_ccomp_instrseq.dats ├── pats_ccomp_lazyeval.dats ├── pats_ccomp_looping.dats ├── pats_ccomp_main.dats ├── pats_ccomp_print.dats ├── pats_ccomp_subst.dats ├── pats_ccomp_template.dats ├── pats_ccomp_tmplab.dats ├── pats_ccomp_tmpvar.dats ├── pats_ccomp_trywith.dats ├── pats_ccomp_util.dats ├── pats_codegen2.dats ├── pats_codegen2.sats ├── pats_codegen2_absrec.dats ├── pats_codegen2_datype.dats ├── pats_codegen2_fprint.dats ├── pats_codegen2_util.dats ├── pats_comarg.dats ├── pats_comarg.sats ├── pats_constraint3.dats ├── pats_constraint3.sats ├── pats_constraint3_appenv.hats ├── pats_constraint3_icnstr.dats ├── pats_constraint3_init.dats ├── pats_constraint3_jsonize.dats ├── pats_constraint3_mapgen.dats ├── pats_constraint3_print.dats ├── pats_constraint3_simplify.dats ├── pats_constraint3_solve.dats ├── pats_counter.dats ├── pats_counter.sats ├── pats_depgen.dats ├── pats_depgen.sats ├── pats_dmacro2.dats ├── pats_dmacro2.sats ├── pats_dmacro2_eval0.dats ├── pats_dmacro2_eval1.dats ├── pats_dmacro2_print.dats ├── pats_dyncst2.dats ├── pats_dyncst2.sats ├── pats_dynexp1.dats ├── pats_dynexp1.sats ├── pats_dynexp1_print.dats ├── pats_dynexp2.dats ├── pats_dynexp2.sats ├── pats_dynexp2_appenv.hats ├── pats_dynexp2_dcst.dats ├── pats_dynexp2_dmac.dats ├── pats_dynexp2_dvar.dats ├── pats_dynexp2_mapgen.dats ├── pats_dynexp2_print.dats ├── pats_dynexp2_util.dats ├── pats_dynexp3.dats ├── pats_dynexp3.sats ├── pats_dynexp3_print.dats ├── pats_e1xpval.dats ├── pats_e1xpval.sats ├── pats_e1xpval_error.dats ├── pats_effect.dats ├── pats_effect.sats ├── pats_errmsg.dats ├── pats_errmsg.sats ├── pats_error.dats ├── pats_error.sats ├── pats_filename.dats ├── pats_filename.sats ├── pats_filename_reloc.dats ├── pats_fixity.sats ├── pats_fixity_fxty.dats ├── pats_fixity_prec.dats ├── pats_global.dats ├── pats_global.sats ├── pats_hidynexp.dats ├── pats_hidynexp.sats ├── pats_hidynexp_print.dats ├── pats_hidynexp_util.dats ├── pats_histaexp.dats ├── pats_histaexp.sats ├── pats_histaexp_funlab.dats ├── pats_histaexp_print.dats ├── pats_intinf.dats ├── pats_intinf.sats ├── pats_intinf_gmp.hats ├── pats_intinf_int.hats ├── pats_jsonize.dats ├── pats_jsonize.sats ├── pats_jsonize_synent2.dats ├── pats_jsonize_synent2.sats ├── pats_label.dats ├── pats_label.sats ├── pats_lexbuf.cats ├── pats_lexbuf.dats ├── pats_lexbuf.sats ├── pats_lexing.cats ├── pats_lexing.dats ├── pats_lexing.sats ├── pats_lexing_error.dats ├── pats_lexing_print.dats ├── pats_lexing_token.dats ├── pats_lintprgm.dats ├── pats_lintprgm.sats ├── pats_lintprgm_myint.cats ├── pats_lintprgm_myint.dats ├── pats_lintprgm_myint_gmp.dats ├── pats_lintprgm_myint_int.dats ├── pats_lintprgm_print.dats ├── pats_lintprgm_solve.dats ├── pats_location.cats ├── pats_location.dats ├── pats_location.sats ├── pats_main.dats ├── pats_namespace.dats ├── pats_namespace.sats ├── pats_params.hats ├── pats_parsing.dats ├── pats_parsing.sats ├── pats_parsing_base.dats ├── pats_parsing_decl.dats ├── pats_parsing_dynexp.dats ├── pats_parsing_e0xp.dats ├── pats_parsing_error.dats ├── pats_parsing_kwds.dats ├── pats_parsing_p0at.dats ├── pats_parsing_sort.dats ├── pats_parsing_staexp.dats ├── pats_parsing_toplevel.dats ├── pats_parsing_util.dats ├── pats_patcst2.dats ├── pats_patcst2.sats ├── pats_reader.cats ├── pats_reader.dats ├── pats_reader.sats ├── pats_stacst2.dats ├── pats_stacst2.sats ├── pats_staexp1.dats ├── pats_staexp1.sats ├── pats_staexp1_print.dats ├── pats_staexp2.dats ├── pats_staexp2.sats ├── pats_staexp2_appenv.hats ├── pats_staexp2_ctxt.dats ├── pats_staexp2_dcon.dats ├── pats_staexp2_error.dats ├── pats_staexp2_error.sats ├── pats_staexp2_hole.dats ├── pats_staexp2_pprint.dats ├── pats_staexp2_print.dats ├── pats_staexp2_scst.dats ├── pats_staexp2_skexp.dats ├── pats_staexp2_solve.dats ├── pats_staexp2_solve.sats ├── pats_staexp2_sort.dats ├── pats_staexp2_svar.dats ├── pats_staexp2_svvar.dats ├── pats_staexp2_szexp.dats ├── pats_staexp2_util.sats ├── pats_staexp2_util1.dats ├── pats_staexp2_util2.dats ├── pats_staexp2_util3.dats ├── pats_stamp.dats ├── pats_stamp.sats ├── pats_symbol.dats ├── pats_symbol.sats ├── pats_symenv.dats ├── pats_symenv.sats ├── pats_symmap.dats ├── pats_symmap.sats ├── pats_symmap_avltree.hats ├── pats_symmap_htlinprb.hats ├── pats_syntax.dats ├── pats_syntax.sats ├── pats_syntax_print.dats ├── pats_taggen.dats ├── pats_taggen.sats ├── pats_tokbuf.cats ├── pats_tokbuf.dats ├── pats_tokbuf.sats ├── pats_trans1.sats ├── pats_trans1_decl.dats ├── pats_trans1_dynexp.dats ├── pats_trans1_e0xp.dats ├── pats_trans1_effect.dats ├── pats_trans1_env.dats ├── pats_trans1_env.sats ├── pats_trans1_error.dats ├── pats_trans1_p0at.dats ├── pats_trans1_sort.dats ├── pats_trans1_staexp.dats ├── pats_trans1_syndef.dats ├── pats_trans2.sats ├── pats_trans2_decl.dats ├── pats_trans2_dynexp.dats ├── pats_trans2_env.dats ├── pats_trans2_env.sats ├── pats_trans2_error.dats ├── pats_trans2_impdec.dats ├── pats_trans2_p1at.dats ├── pats_trans2_sort.dats ├── pats_trans2_staexp.dats ├── pats_trans3.sats ├── pats_trans3_appsym.dats ├── pats_trans3_assgn.dats ├── pats_trans3_caseof.dats ├── pats_trans3_decl.dats ├── pats_trans3_deref.dats ├── pats_trans3_dynexp_dn.dats ├── pats_trans3_dynexp_up.dats ├── pats_trans3_env.dats ├── pats_trans3_env.sats ├── pats_trans3_env_dvar.dats ├── pats_trans3_env_effect.dats ├── pats_trans3_env_lamlp.dats ├── pats_trans3_env_lstate.dats ├── pats_trans3_env_pfman.dats ├── pats_trans3_env_print.dats ├── pats_trans3_env_scst.dats ├── pats_trans3_env_svar.dats ├── pats_trans3_env_termet.dats ├── pats_trans3_error.dats ├── pats_trans3_fldfrat.dats ├── pats_trans3_looping.dats ├── pats_trans3_lvalres.dats ├── pats_trans3_p2at.dats ├── pats_trans3_patcon.dats ├── pats_trans3_ptrof.dats ├── pats_trans3_selab.dats ├── pats_trans3_syncst.dats ├── pats_trans3_util.dats ├── pats_trans3_viewat.dats ├── pats_trans3_xchng.dats ├── pats_typerase.sats ├── pats_typerase_decl.dats ├── pats_typerase_dynexp.dats ├── pats_typerase_error.dats ├── pats_typerase_staexp.dats ├── pats_utils.dats └── pats_utils.sats ├── travis-ci ├── install-ats1.sh ├── install-pkgs.sh └── travis.yml └── utils ├── MISC ├── Makefile ├── README ├── jsonlst2arr │ ├── Makefile │ └── jsonlst2arr.dats ├── linenumbering.dats ├── wgetccrun.sh └── wgetccrun_gtk3.sh ├── atexting ├── CATS │ └── .keeper ├── DATS │ ├── Makefile │ ├── SHARE │ │ ├── atexting_textdef_foreach.dats │ │ ├── atexting_textdef_pre.dats │ │ └── atexting_textdef_xhtml.dats │ ├── atexting_atext.dats │ ├── atexting_commarg.dats │ ├── atexting_fname.dats │ ├── atexting_fprint_atext.hats │ ├── atexting_fprint_commarg.hats │ ├── atexting_fprint_token.hats │ ├── atexting_global.dats │ ├── atexting_lexbuf.dats │ ├── atexting_lexing.dats │ ├── atexting_mylib.dats │ ├── atexting_parerr.dats │ ├── atexting_parsing.dats │ ├── atexting_posloc.dats │ ├── atexting_strngfy.dats │ ├── atexting_textdef.dats │ ├── atexting_tokbuf.dats │ ├── atexting_token.dats │ └── atexting_topeval.dats ├── README ├── SATS │ ├── atexting.sats │ └── atexting_textdef.sats ├── TEST │ ├── Makefile │ ├── data.atxt │ └── mytexting.dats ├── mylibies.hats └── mylibies_link.hats ├── ats2srcgen ├── DATS │ └── ats2srcgen_main.dats ├── Makefile ├── README └── SATS │ └── ats2srcgen.sats ├── atscc ├── BUILD │ └── .keeper ├── DATS │ ├── atscc_main.dats │ ├── atscc_print.dats │ ├── atscc_util.dats │ └── patscc.dats ├── DOCUGEN │ ├── Makefile │ └── atsccman.atxt ├── Makefile ├── Makefile_build ├── README └── SATS │ └── atscc.sats ├── atsgrammar └── keywords.txt ├── atslex ├── Makefile ├── atslex.sats ├── atslex_charset.dats └── atslex_main.dats ├── atsopt └── DOCUGEN │ ├── Makefile │ └── atsoptman.atxt ├── atsreloc ├── BUILD │ └── .keeper ├── DATS │ ├── atsreloc_curl.dats │ ├── atsreloc_wget.dats │ └── atsreloc_wget_lib.dats ├── Makefile ├── Makefile_build ├── README.md ├── TEST │ ├── Makefile │ ├── assignment0.dats │ ├── test01.dats │ ├── test02.dats │ └── test03.dats ├── libcurl │ ├── SATS │ │ ├── curl.sats │ │ └── easy.sats │ └── libcurl │ │ └── CATS │ │ └── curl.cats └── libjson-c │ ├── DATS │ ├── json.dats │ └── json_ML.dats │ ├── SATS │ ├── arraylist.sats │ ├── json.sats │ ├── json_ML.sats │ ├── json_object.sats │ ├── json_object_iterator.sats │ ├── json_tokener.sats │ ├── json_util.sats │ ├── linkhash.sats │ ├── mybasis.sats │ └── printbuf.sats │ └── json-c │ └── CATS │ ├── json.cats │ └── printbuf.cats ├── atsynmark ├── BUILD │ └── .keeper ├── DATS │ ├── pats2xhtml_level1.dats │ └── pats2xhtml_main.dats ├── Makefile ├── Makefile_build ├── README └── SATS │ └── pats2xhtml.sats ├── emacs ├── ats2-mode.el ├── flycheck-ats2.el └── flymake-ats2.el ├── libatslex ├── DATS │ └── unicode.dats └── SATS │ ├── DOCUGEN │ ├── HTML │ │ └── .keeper │ ├── Makefile │ ├── Makefile.atxt │ ├── Makefile.gen │ ├── TRYIT │ │ └── .keeper │ └── unicode.atxt │ └── unicode.sats ├── libatsopt ├── BUILD │ └── .keeper ├── DATS │ └── patsopt_ext.dats ├── JS │ ├── Makefile │ ├── TEST │ │ ├── Makefile │ │ ├── PATSHOME │ │ │ └── mytmp │ │ │ │ └── hello.dats │ │ ├── README │ │ ├── libatsopt_io.js │ │ ├── libatsopt_pre.js │ │ ├── libatsopt_worker.dats │ │ ├── myout │ │ │ └── .keeper │ │ ├── package.json │ │ ├── patsopt.dats │ │ ├── test_libatsopt.dats │ │ ├── test_libatsopt.html │ │ ├── wktest_libatsopt.dats │ │ └── wktest_libatsopt.html │ └── setup.js ├── Makefile ├── Makefile_build ├── README └── TEST │ ├── Makefile │ ├── patsopt.dats │ ├── patsopt_atscc2js.dats │ └── patsopt_ccomp.dats ├── libatsrec ├── DATS │ └── libatsrec.dats ├── SATS │ └── libatsrec.sats ├── TEST │ ├── DATA │ │ └── theQuestionDB.arec │ ├── Makefile │ ├── test01.dats │ ├── test02.dats │ └── test03.dats ├── mylibies.hats ├── mylibies_link.hats └── package.json ├── libatsynmark ├── BUILD │ └── .keeper ├── CBOOT │ └── Makefile ├── DATS │ ├── libatsynmark.dats │ ├── libatsynmark_pats2xhtml.dats │ ├── libatsynmark_pats2xhtml_bground.dats │ ├── libatsynmark_pats2xhtml_embedded.dats │ └── libatsynmark_psynmark.dats ├── Makefile ├── Makefile_build ├── SATS │ └── libatsynmark.sats ├── TEST │ ├── Makefile │ ├── test01.dats │ └── test02.dats └── dynloadall.dats ├── myatscc ├── BUILD │ ├── .keeper │ └── node_modules ├── DATS │ ├── myatscc_evaler.dats │ ├── myatscc_getdef.dats │ ├── myatscc_lexer.dats │ ├── myatscc_libats.dats │ ├── myatscc_loc_t.dats │ ├── myatscc_main.dats │ ├── myatscc_parcomb.dats │ ├── myatscc_parcomb.sats │ └── myatscc_parser.dats ├── Makefile ├── Makefile_build ├── README ├── SATS │ └── myatscc.sats └── node_modules │ └── atscntrb-hx-parcomb │ ├── DATS │ └── parcomb.dats │ ├── README.md │ ├── SATS │ └── parcomb.sats │ ├── TEST │ ├── Makefile │ └── tokenizer.dats │ ├── mydepies.dats │ ├── mylibies.dats │ ├── mylibies.hats │ ├── mylibies.sats │ └── package.json ├── mytempacc ├── BUILD │ └── .keeper ├── DATS │ └── mytempacc.dats ├── Makefile └── Makefile_build ├── packeditall ├── BUILD │ └── .keeper ├── DATS │ ├── main_pack.dats │ ├── main_unpack.dats │ ├── packing.dats │ ├── params.hats │ └── unpacking.dats ├── Makefile ├── Makefile_build ├── README └── SATS │ ├── packing.sats │ └── unpacking.sats └── tempacc ├── BUILD └── .keeper ├── DATS ├── atscc_main.dats ├── atscc_print.dats ├── atscc_util.dats └── tempacc.dats ├── DOCUGEN ├── Makefile └── tempaccman.atxt ├── Makefile ├── Makefile_build ├── README └── SATS └── atscc.sats /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | travis-ci/travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES-ats2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/CHANGES-ats2 -------------------------------------------------------------------------------- /CHANGES-contrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/CHANGES-contrib -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | COPYING-gpl-3.0.txt -------------------------------------------------------------------------------- /COPYING-gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/COPYING-gpl-3.0.txt -------------------------------------------------------------------------------- /COPYING-lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/COPYING-lgpl-2.1.txt -------------------------------------------------------------------------------- /COPYING-lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/COPYING-lgpl-3.0.txt -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile_devl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/Makefile_devl -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/NOTES -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.4.3 2 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | appveyor/appveyor.yml -------------------------------------------------------------------------------- /appveyor/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/appveyor/appveyor.yml -------------------------------------------------------------------------------- /bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/myatscc_env.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/bin/myatscc_env.sh.in -------------------------------------------------------------------------------- /bin/patscc_env.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/bin/patscc_env.sh.in -------------------------------------------------------------------------------- /bin/patsopt_env.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/bin/patsopt_env.sh.in -------------------------------------------------------------------------------- /ccomp/atslib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/ccomp/atslib/Makefile -------------------------------------------------------------------------------- /ccomp/atslib/Makefile.atxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/ccomp/atslib/Makefile.atxt -------------------------------------------------------------------------------- /ccomp/atslib/Makefile.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/ccomp/atslib/Makefile.gen -------------------------------------------------------------------------------- /ccomp/atslib/lib/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccomp/atslib/lib32/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccomp/atslib/lib64/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccomp/atslib/output/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codegen/Makefile_atslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/codegen/Makefile_atslib -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- 1 | doc/DISTRIB/ATS-Postiats/config.h -------------------------------------------------------------------------------- /contrib/ATS-extsolve-smt2/ATS-extsolve: -------------------------------------------------------------------------------- 1 | ../ATS-extsolve -------------------------------------------------------------------------------- /contrib/ATS-extsolve-smt2/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/ATS-extsolve-z3/ATS-extsolve: -------------------------------------------------------------------------------- 1 | ../ATS-extsolve -------------------------------------------------------------------------------- /contrib/ATS-extsolve-z3/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/ATS-extsolve/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/ATS-extsolve/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/contrib/ATS-extsolve/README -------------------------------------------------------------------------------- /contrib/ATS-extsolve/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2clj/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /contrib/CATS-atscc2clj/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2erl/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /contrib/CATS-atscc2erl/TEST/Sessiontype/CATS/basis_cats.hrl: -------------------------------------------------------------------------------- 1 | basis2_cats.hrl -------------------------------------------------------------------------------- /contrib/CATS-atscc2erl/TEST/Sessiontype/TEST1/libatscc2erl/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2erl/TEST/Sessiontype/TEST2/libatscc2erl/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2erl/TEST/Sessiontype/output/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2erl/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2js/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /contrib/CATS-atscc2js/CBOOT/JS/TEST/ATSCC2JS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2js/TEST/WEBDEMO/DATS_JS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2js/TEST/libatscc2js/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2js/TEST/libatscc2js/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2js/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2php/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /contrib/CATS-atscc2php/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2pl/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /contrib/CATS-atscc2pl/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2py3/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /contrib/CATS-atscc2py3/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2r34/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /contrib/CATS-atscc2r34/TEST/libatscc2r34/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2r34/TEST/libatscc2r34/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2r34/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2scm/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /contrib/CATS-atscc2scm/TEST/libatscc2scm/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2scm/TEST/libatscc2scm/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-atscc2scm/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/CATS-parsemit/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/ats2cpp/H: -------------------------------------------------------------------------------- 1 | ccomp -------------------------------------------------------------------------------- /contrib/ats2cpp/TEST/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/contrib/ats2cpp/TEST/README -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-cstream/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-cstream/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../../share/Makefile.gen -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-intinf/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-intinf/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../../share/Makefile.gen -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libgmp/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libgmp/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../../share/Makefile.gen -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libhiredis/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libhiredis/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../../share/Makefile.gen -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libjansson/CATS/jansson.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/jansson.cats -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libjansson/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libjansson/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../../share/Makefile.gen -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libjansson/SATS/DOCUGEN/TRYIT/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libjson-c/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../../share/Makefile.gen -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libpcre/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-hx-libpcre/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../../share/Makefile.gen -------------------------------------------------------------------------------- /contrib/atscntrb/atscntrb-smt-libz3/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../share/Makefile.gen -------------------------------------------------------------------------------- /contrib/libatscc/basics.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/contrib/libatscc/basics.sats -------------------------------------------------------------------------------- /contrib/libatscc2clj/ATS2-0.3.2/output/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2clj/ATS2-0.3.2/output/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2clj/ATS2-0.3.2/output/DATS/ML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2erl/ATS2-0.3.2/output/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2erl/ATS2-0.3.2/output/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2erl/ATS2-0.3.2/output/DATS/ML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Bacon.js/CATS/baconjs_cats.js: -------------------------------------------------------------------------------- 1 | ../../CATS/Bacon.js/baconjs_cats.js -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Bacon.js/DATS/baconjs.dats: -------------------------------------------------------------------------------- 1 | ../../DATS/Bacon.js/baconjs.dats -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Bacon.js/DATS/baconjs_ext.dats: -------------------------------------------------------------------------------- 1 | ../../DATS/Bacon.js/baconjs_ext.dats -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Bacon.js/SATS/baconjs.sats: -------------------------------------------------------------------------------- 1 | ../../SATS/Bacon.js/baconjs.sats -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Bacon.js/SATS/baconjs_ext.sats: -------------------------------------------------------------------------------- 1 | ../../SATS/Bacon.js/baconjs_ext.sats -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Bacon.js/SATS/channel.sats: -------------------------------------------------------------------------------- 1 | ../../SATS/Bacon.js/channel.sats -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Node.js/CATS/basics_cats.js: -------------------------------------------------------------------------------- 1 | ../../CATS/Node.js/basics_cats.js -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Node.js/CATS/fprint_cats.js: -------------------------------------------------------------------------------- 1 | ../../CATS/Node.js/fprint_cats.js -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Node.js/CATS/process_cats.js: -------------------------------------------------------------------------------- 1 | ../../CATS/Node.js/process_cats.js -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Node.js/DATS/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Node.js/SATS/basics.sats: -------------------------------------------------------------------------------- 1 | ../../SATS/Node.js/basics.sats -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Node.js/SATS/fprint.sats: -------------------------------------------------------------------------------- 1 | ../../SATS/Node.js/fprint.sats -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/Node.js/SATS/process.sats: -------------------------------------------------------------------------------- 1 | ../../SATS/Node.js/process.sats -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/output/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/output/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/output/DATS/BUCS320/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/output/DATS/BUCS320/parcomb/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/output/DATS/Bacon.js/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/ATS2-0.3.2/output/DATS/ML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/Bacon.js/output/DATS/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/HTML/Canvas/TEST/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/contrib/libatscc2js/Makefile -------------------------------------------------------------------------------- /contrib/libatscc2js/output/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/output/Bacon.js/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/output/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2js/output/DATS/ML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2php/ATS2-0.3.2/mylibies.hats: -------------------------------------------------------------------------------- 1 | staloadall.hats -------------------------------------------------------------------------------- /contrib/libatscc2php/ATS2-0.3.2/output/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2php/ATS2-0.3.2/output/DATS/ML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2pl/ATS2-0.3.2/output/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2pl/ATS2-0.3.2/output/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2pl/ATS2-0.3.2/output/DATS/ML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2py3/ATS2-0.3.2/CATS/PYGAME_pygame_cats.py: -------------------------------------------------------------------------------- 1 | PYGAME/pygame_cats.py -------------------------------------------------------------------------------- /contrib/libatscc2py3/ATS2-0.3.2/CATS/PYLIBC_datetime_cats.py: -------------------------------------------------------------------------------- 1 | PYLIBC/datetime_cats.py -------------------------------------------------------------------------------- /contrib/libatscc2py3/ATS2-0.3.2/CATS/PYLIBC_random_cats.py: -------------------------------------------------------------------------------- 1 | PYLIBC/random_cats.py -------------------------------------------------------------------------------- /contrib/libatscc2py3/ATS2-0.3.2/output/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2py3/ATS2-0.3.2/output/DATS/ML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2r34/output/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2r34/output/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2r34/output/DATS/ML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2scm/ATS2-0.3.2/output/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2scm/ATS2-0.3.2/output/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/libatscc2scm/ATS2-0.3.2/output/DATS/ML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- 1 | nix/default.nix -------------------------------------------------------------------------------- /doc/BOOK/ATS2FUNCRASH/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BOOK/ATS2FUNCRASH/LECTURE/MYLIB/DOCUGEN/BUILD/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BOOK/ATS2FUNCRASH/LECTURE/MYLIB/mylib.dats: -------------------------------------------------------------------------------- 1 | mylib_atxt.dats -------------------------------------------------------------------------------- /doc/BOOK/ATS2FUNCRASH/MYTEXT/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BOOK/ATS2TUTORIAL/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BOOK/ATS2TUTORIAL/CODE/.htaccess: -------------------------------------------------------------------------------- 1 | Options +Indexes 2 | -------------------------------------------------------------------------------- /doc/BOOK/ATS2TUTORIAL/HTML/ATS2TUTORIAL-BOOK.html: -------------------------------------------------------------------------------- 1 | book1.html -------------------------------------------------------------------------------- /doc/BOOK/ATS2TUTORIAL/HTML/HTMLTOC/ATS2TUTORIAL-BOOK.html: -------------------------------------------------------------------------------- 1 | book1.html -------------------------------------------------------------------------------- /doc/BOOK/ATS2TUTORIAL/HTML/HTMLTOC/index.html: -------------------------------------------------------------------------------- 1 | ATS2TUTORIAL-BOOK.html -------------------------------------------------------------------------------- /doc/BOOK/ATS2TUTORIAL/MYTEXT/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BOOK/ATS2TUTORIAL/TEMP/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BOOK/INT2PROGINATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BOOK/INT2PROGINATS/CODE/.htaccess: -------------------------------------------------------------------------------- 1 | Options +Indexes 2 | -------------------------------------------------------------------------------- /doc/BOOK/INT2PROGINATS/HTML/HTMLTOC/INT2PROGINATS-BOOK.html: -------------------------------------------------------------------------------- 1 | book1.html -------------------------------------------------------------------------------- /doc/BOOK/INT2PROGINATS/HTML/HTMLTOC/index.html: -------------------------------------------------------------------------------- 1 | INT2PROGINATS-BOOK.html -------------------------------------------------------------------------------- /doc/BOOK/INT2PROGINATS/HTML/INT2PROGINATS-BOOK.html: -------------------------------------------------------------------------------- 1 | book1.html -------------------------------------------------------------------------------- /doc/BOOK/INT2PROGINATS/HTML/index.html: -------------------------------------------------------------------------------- 1 | INT2PROGINATS-BOOK.html -------------------------------------------------------------------------------- /doc/BOOK/INT2PROGINATS/INTPROGINATS-2013-03-24/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BOOK/INT2PROGINATS/INTPROGINATS-2013-03-24/PDF/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BOOK/INT2PROGINATS/MYTEXT/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BUGS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/Makefile -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-10-07.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-10-07.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-10-09.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-10-09.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-10-11.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-10-11.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-10-30.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-10-30.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-10-31.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-10-31.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-11-01.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-11-01.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-11-06.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-11-06.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-11-08.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-11-08.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-11-10.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-11-10.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-11-29.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-11-29.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2013-12-04.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2013-12-04.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2014-02-15.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2014-02-15.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2014-03-12.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2014-03-12.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2014-05-05.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2014-05-05.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2014-05-17.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2014-05-17.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2014-10-29.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2014-10-29.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2014-10-31.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2014-10-31.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2014-11-14.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2014-11-14.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2015-01-03.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2015-01-03.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2015-01-07.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2015-01-07.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2015-01-12.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2015-01-12.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2015-01-25.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2015-01-25.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2015-02-22.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2015-02-22.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2015-04-15.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2015-04-15.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2015-04-21.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2015-04-21.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2015-04-25.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2015-04-25.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2015-05-13.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2015-05-13.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2015-08-04.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2015-08-04.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2016-05-13.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2016-05-13.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2016-06-26.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2016-06-26.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2016-10-08.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2016-10-08.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2017-04-16.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2017-04-16.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2017-04-17.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2017-04-17.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2017-05-19.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2017-05-19.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2017-06-27.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2017-06-27.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2018-09-16.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2018-09-16.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2020-09-29.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2020-09-29.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2020-10-04.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2020-10-04.dats -------------------------------------------------------------------------------- /doc/BUGS/bug-2020-10-14.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/BUGS/bug-2020-10-14.dats -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/GTK/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/GTK/CATS/gdk/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/GTK/CATS/gtk/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/GTK/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/GTK/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/GTK/SATS/gdk/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/GTK/SATS/gtk/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/HTML-emscripten/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/HTML-emscripten/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/HTML-emscripten/JS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/HTML-emscripten/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/HTML-emscripten/canvas-2d/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/HTML-emscripten/canvas-2d/JS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/HTML-emscripten/canvas-2d/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/HTML-emscripten/canvas-2d/TEST/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/JNI/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/JNI/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/JNI/Java/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/JNI/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/OpenSSL/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/OpenSSL/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/OpenSSL/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/SDL2/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/SDL2/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/glib/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/glib/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/glib/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/glib/SATS/glib/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/glib/SATS/gobject/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/hiredis/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/hiredis/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/hiredis/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/kernelats/prelude/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/kernelats/prelude/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/libats-/hwxi/teaching/BUCS/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/libats-/hwxi/teaching/fileAsLock/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/libats-/hwxi/teaching/fileAsLock/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/libats-/hwxi/teaching/mydraw/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/libats-/hwxi/teaching/mydraw/JS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/libats-/hwxi/teaching/mydraw/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/libats-/hwxi/teaching/mythread/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/libats-/hwxi/teaching/mythread/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/libatscc-0.3.2/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/zeromq/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/zeromq/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-contrib/contrib/zeromq/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/ccomp/runtime/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/libats/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/libats/ML/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/libats/libc/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/libats/libc/CATS/arpa/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/libats/libc/CATS/gdbm/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/libats/libc/CATS/netinet/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/libats/libc/CATS/sys/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/patscontrib/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/patscontrib/GTK/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/patscontrib/glib/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/patscontrib/zeromq/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/prelude/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/share/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/share/H/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/utils/atscc/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/utils/atscc/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/utils/myatscc/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats-include/utils/myatscc/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/Makefile: -------------------------------------------------------------------------------- 1 | Makefile_dist -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/RELEASE/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/ccomp/atslib/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/ccomp/atslib/lib/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/ccomp/atslib/lib32/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/ccomp/atslib/lib64/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/ccomp/atslib/output/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/ccomp/runtime/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve-smt2/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve-smt2/ATS-extsolve: -------------------------------------------------------------------------------- 1 | ../ATS-extsolve -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve-smt2/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve-smt2/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve-smt2/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve-z3/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve-z3/ATS-extsolve: -------------------------------------------------------------------------------- 1 | ../ATS-extsolve -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve-z3/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve-z3/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve-z3/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ATS-extsolve/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2clj/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2clj/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2clj/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2js/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2js/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2js/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2js/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2php/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2php/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2php/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2php/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2pl/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2pl/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2pl/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2pl/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2py3/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2py3/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2py3/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2py3/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2r34/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2r34/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2r34/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2r34/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2scm/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2scm/CATS-parsemit: -------------------------------------------------------------------------------- 1 | ../CATS-parsemit -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2scm/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-atscc2scm/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-parsemit/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-parsemit/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-parsemit/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/CATS-parsemit/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/ats2cpp/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-cstream/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-getargs/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-globals/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-intinf/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-libcurl/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-libgmp/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-libjansson/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-libjson-c/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-libpcre/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-mytesting/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/atscntrb/atscntrb-hx-sdstring/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/libatscc/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/libatscc2clj/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/libatscc2js/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/libatscc2php/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/libatscc2pl/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/libatscc2py3/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/libatscc2r34/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/contrib/libatscc2scm/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/doc/EXAMPLE/ATSLIB/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/doc/EXAMPLE/INTRO/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/doc/EXAMPLE/MISC/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/doc/EXAMPLE/PCPV/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ATS1/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ATS1/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ATS2/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ATS2/DATS/fcntainer/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ATS2/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/BUCS320/DivideConquer/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/BUCS320/DivideConquer/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/BUCS320/GraphSearch/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/BUCS320/GraphSearch/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/BUCS320/parcomb/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/BUCS320/parcomb/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/DATS/Number/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/DATS/Number/SHARE/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/DATS/SHARE/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ML/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ML/COMPILE/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ML/COMPILE/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ML/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ML/DATS/SHARE/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ML/HATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ML/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/ML/SATS/SHARE/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/SATS/Number/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/SATS/SHARE/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/CATS/arpa/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/CATS/gdbm/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/CATS/netinet/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/CATS/sys/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/DATS/arpa/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/DATS/gdbm/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/DATS/netinet/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/DATS/sys/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/SATS/arpa/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/SATS/gdbm/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/SATS/gdbm/SHARE/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/SATS/netinet/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/libats/libc/SATS/sys/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/npm-utils/contrib/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/npm-utils/contrib/atscntrb/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/npm-utils/contrib/libats-/hwxi/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/npm-utils/contrib/libats-hwxi: -------------------------------------------------------------------------------- 1 | libats-/hwxi -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/prelude/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/prelude/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/prelude/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/prelude/DATS/SHARE/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/prelude/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/share/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/share/H/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/share/HATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/src/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/src/CBOOT/ccomp/runtime/GCATS/m32/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/src/CBOOT/ccomp/runtime/GCATS/m64/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/src/CBOOT/libats/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/src/CBOOT/libats/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/src/CBOOT/libats/ngc/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/src/CBOOT/libc/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/src/CBOOT/libc/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/src/CBOOT/libc/sys/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/src/CBOOT/prelude/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/utils/atscc/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/utils/emacs/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/utils/libatsopt/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/utils/libatsopt/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/ATS-Postiats/utils/myatscc/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/DISTRIB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/DISTRIB/Makefile -------------------------------------------------------------------------------- /doc/DISTRIB/Makefile.atxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/DISTRIB/Makefile.atxt -------------------------------------------------------------------------------- /doc/DISTRIB/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../share/Makefile.gen -------------------------------------------------------------------------------- /doc/DISTRIB/Makefile_inclats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/DISTRIB/Makefile_inclats -------------------------------------------------------------------------------- /doc/DISTRIB/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/DISTRIB/README -------------------------------------------------------------------------------- /doc/DISTRIB/SCRIPT/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/EXAMPLE/ARITH/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/ARITH/Makefile -------------------------------------------------------------------------------- /doc/EXAMPLE/ATSLF/CPS.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/ATSLF/CPS.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/ATSLF/F-algebra.test-cmp: -------------------------------------------------------------------------------- 1 | eval(1+2*3) = 7 2 | -------------------------------------------------------------------------------- /doc/EXAMPLE/ATSLF/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/ATSLF/Makefile -------------------------------------------------------------------------------- /doc/EXAMPLE/ATSLF/PHP.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/ATSLF/PHP.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/ATSLF/SMI.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/ATSLF/SMI.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/ATSLIB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/ATSLIB/Makefile -------------------------------------------------------------------------------- /doc/EXAMPLE/ATSLIB/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../share/Makefile.gen -------------------------------------------------------------------------------- /doc/EXAMPLE/EFFECTIVATS/.htaccess: -------------------------------------------------------------------------------- 1 | Options +Indexes 2 | -------------------------------------------------------------------------------- /doc/EXAMPLE/EFFECTIVATS/MYTEXT/bin/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/EXAMPLE/EFFECTIVATS/Sierpinski-3angle/SERVER: -------------------------------------------------------------------------------- 1 | ../../../PROJECT/MEDIUM/ats2langweb/SERVER -------------------------------------------------------------------------------- /doc/EXAMPLE/EFFECTIVATS/http-server/SERVER: -------------------------------------------------------------------------------- 1 | ../../../PROJECT/MEDIUM/ats2langweb/SERVER -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/Makefile -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/atof.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/atof.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/atoi.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/atoi.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/f91.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/f91.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fact1.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/fact1.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fact1.test-cmp: -------------------------------------------------------------------------------- 1 | factorial of 10 = 3628800 2 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fact2.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/fact2.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fact3.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/fact3.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fact_uninterp.test-cmp: -------------------------------------------------------------------------------- 1 | fact(10) = 3628800 2 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fcopy.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/fcopy.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fcopy.test-cmp: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fcopy.test-inp: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fcopy.test-out: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | again 4 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fcopy2.test-cmp: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | again 4 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fcopy2.test-inp: -------------------------------------------------------------------------------- 1 | hello 2 | world 3 | again 4 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fib1.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/fib1.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/fib2.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/fib2.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/gfact.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/gfact.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/hello.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/hello.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/intecho.test-inp: -------------------------------------------------------------------------------- 1 | 24 2 | 03 3 | exit 4 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/linenmbr.test-cmp: -------------------------------------------------------------------------------- 1 | 1: 1 2 | 2: 2 3 | 3: 3 4 | 4: 4 5 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/linenmbr.test-inp: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/sieve_lazy.test-cmp: -------------------------------------------------------------------------------- 1 | prime 1000 = 7927 2 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/sieve_llazy.test-cmp: -------------------------------------------------------------------------------- 1 | prime(1000) = 7927 2 | -------------------------------------------------------------------------------- /doc/EXAMPLE/INTRO/tally.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/INTRO/tally.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/MISC/DTW0.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/MISC/DTW0.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/MISC/LCS0.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/MISC/LCS0.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/MISC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/MISC/Makefile -------------------------------------------------------------------------------- /doc/EXAMPLE/MISC/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../share/Makefile.gen -------------------------------------------------------------------------------- /doc/EXAMPLE/MISC/hanoi.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/MISC/hanoi.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/MISC/sieve.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/MISC/sieve.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/MISC/strmat.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/MISC/strmat.dats -------------------------------------------------------------------------------- /doc/EXAMPLE/OBJC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/OBJC/README -------------------------------------------------------------------------------- /doc/EXAMPLE/PCPV/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/PCPV/Makefile -------------------------------------------------------------------------------- /doc/EXAMPLE/PEULER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/PEULER/Makefile -------------------------------------------------------------------------------- /doc/EXAMPLE/PORTABLE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/PORTABLE/README -------------------------------------------------------------------------------- /doc/EXAMPLE/PORTABLE/hello/MYPORTDIR/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/EXAMPLE/Pure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/Pure/Makefile -------------------------------------------------------------------------------- /doc/EXAMPLE/RosettaCode/DATA/Stream_Merge_0.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 2 3 | 4 4 | 6 5 | 8 6 | -------------------------------------------------------------------------------- /doc/EXAMPLE/RosettaCode/DATA/Stream_Merge_1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 | 5 4 | 7 5 | 9 6 | -------------------------------------------------------------------------------- /doc/EXAMPLE/RosettaCode/PATSRELOCROOT/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/EXAMPLE/TESTATS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/TESTATS/Makefile -------------------------------------------------------------------------------- /doc/EXAMPLE/TESTATS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/TESTATS/README -------------------------------------------------------------------------------- /doc/EXAMPLE/TESTATS/kacker.test-cmp: -------------------------------------------------------------------------------- 1 | acker(3, 3) = 61 2 | -------------------------------------------------------------------------------- /doc/EXAMPLE/TESTATS/tempboxed.test-cmp: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | -------------------------------------------------------------------------------- /doc/EXAMPLE/TYPEVAL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/EXAMPLE/TYPEVAL/Makefile -------------------------------------------------------------------------------- /doc/Hibou57/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/Makefile_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/Makefile_test -------------------------------------------------------------------------------- /doc/NOTES/ATS-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/NOTES/ATS-history.txt -------------------------------------------------------------------------------- /doc/NOTES/ATS-trilogy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/doc/NOTES/ATS-trilogy.txt -------------------------------------------------------------------------------- /doc/PROJECT/MEDIUM/ats2langweb/Patsoptaas.html: -------------------------------------------------------------------------------- 1 | MYDATA/Patsoptaas.html -------------------------------------------------------------------------------- /docugen/Makefile_atslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/docugen/Makefile_atslib -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/flake.nix -------------------------------------------------------------------------------- /libats/ATS2/SATS/CODEGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../share/Makefile.gen -------------------------------------------------------------------------------- /libats/ATS2/SATS/giterator.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/giterator.sats -------------------------------------------------------------------------------- /libats/ATS2/TEST/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ATS2/TEST/Makefile -------------------------------------------------------------------------------- /libats/ATS2/TEST/test01.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ATS2/TEST/test01.dats -------------------------------------------------------------------------------- /libats/ATS2/TEST/test02.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ATS2/TEST/test02.dats -------------------------------------------------------------------------------- /libats/ATS2/TEST/test03.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ATS2/TEST/test03.dats -------------------------------------------------------------------------------- /libats/CATS/deqarray.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/CATS/deqarray.cats -------------------------------------------------------------------------------- /libats/CATS/dynarray.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/CATS/dynarray.cats -------------------------------------------------------------------------------- /libats/CATS/hashfun.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/CATS/hashfun.cats -------------------------------------------------------------------------------- /libats/CATS/qlist.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/CATS/qlist.cats -------------------------------------------------------------------------------- /libats/CATS/stkarray.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/CATS/stkarray.cats -------------------------------------------------------------------------------- /libats/CATS/stringbuf.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/CATS/stringbuf.cats -------------------------------------------------------------------------------- /libats/DATS/athread.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/athread.dats -------------------------------------------------------------------------------- /libats/DATS/bitvec.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/bitvec.dats -------------------------------------------------------------------------------- /libats/DATS/deqarray.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/deqarray.dats -------------------------------------------------------------------------------- /libats/DATS/dllist.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/dllist.dats -------------------------------------------------------------------------------- /libats/DATS/dynarray.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/dynarray.dats -------------------------------------------------------------------------------- /libats/DATS/funmap_list.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/funmap_list.dats -------------------------------------------------------------------------------- /libats/DATS/gfarray.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/gfarray.dats -------------------------------------------------------------------------------- /libats/DATS/gflist.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/gflist.dats -------------------------------------------------------------------------------- /libats/DATS/gflist_vt.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/gflist_vt.dats -------------------------------------------------------------------------------- /libats/DATS/gmatrix.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/gmatrix.dats -------------------------------------------------------------------------------- /libats/DATS/gmatrix_col.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/gmatrix_col.dats -------------------------------------------------------------------------------- /libats/DATS/gmatrix_row.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/gmatrix_row.dats -------------------------------------------------------------------------------- /libats/DATS/gnode.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/gnode.dats -------------------------------------------------------------------------------- /libats/DATS/gvector.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/gvector.dats -------------------------------------------------------------------------------- /libats/DATS/hashfun.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/hashfun.dats -------------------------------------------------------------------------------- /libats/DATS/ilist_prf.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/ilist_prf.dats -------------------------------------------------------------------------------- /libats/DATS/linmap_list.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/linmap_list.dats -------------------------------------------------------------------------------- /libats/DATS/qlist.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/qlist.dats -------------------------------------------------------------------------------- /libats/DATS/refcount.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/refcount.dats -------------------------------------------------------------------------------- /libats/DATS/sllist.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/sllist.dats -------------------------------------------------------------------------------- /libats/DATS/stkarray.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/stkarray.dats -------------------------------------------------------------------------------- /libats/DATS/stklist.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/stklist.dats -------------------------------------------------------------------------------- /libats/DATS/stringbuf.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/stringbuf.dats -------------------------------------------------------------------------------- /libats/DATS/theGetters.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/theGetters.dats -------------------------------------------------------------------------------- /libats/DATS/typeval.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/DATS/typeval.dats -------------------------------------------------------------------------------- /libats/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/HTML/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/HTML/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/HTML/Makefile -------------------------------------------------------------------------------- /libats/HTML/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/ML/CATS/array0.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/CATS/array0.cats -------------------------------------------------------------------------------- /libats/ML/CATS/strarr.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/CATS/strarr.cats -------------------------------------------------------------------------------- /libats/ML/DATS/argvec.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/argvec.dats -------------------------------------------------------------------------------- /libats/ML/DATS/array0.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/array0.dats -------------------------------------------------------------------------------- /libats/ML/DATS/atspre.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/atspre.dats -------------------------------------------------------------------------------- /libats/ML/DATS/dynarray.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/dynarray.dats -------------------------------------------------------------------------------- /libats/ML/DATS/filebas.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/filebas.dats -------------------------------------------------------------------------------- /libats/ML/DATS/funmap.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/funmap.dats -------------------------------------------------------------------------------- /libats/ML/DATS/funset.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/funset.dats -------------------------------------------------------------------------------- /libats/ML/DATS/gvalue.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/gvalue.dats -------------------------------------------------------------------------------- /libats/ML/DATS/intrange.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/intrange.dats -------------------------------------------------------------------------------- /libats/ML/DATS/list0.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/list0.dats -------------------------------------------------------------------------------- /libats/ML/DATS/list0_vt.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/list0_vt.dats -------------------------------------------------------------------------------- /libats/ML/DATS/matrix0.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/matrix0.dats -------------------------------------------------------------------------------- /libats/ML/DATS/option0.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/option0.dats -------------------------------------------------------------------------------- /libats/ML/DATS/qlistref.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/qlistref.dats -------------------------------------------------------------------------------- /libats/ML/DATS/slistref.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/slistref.dats -------------------------------------------------------------------------------- /libats/ML/DATS/stdlib.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/stdlib.dats -------------------------------------------------------------------------------- /libats/ML/DATS/strarr.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/strarr.dats -------------------------------------------------------------------------------- /libats/ML/DATS/stream.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/stream.dats -------------------------------------------------------------------------------- /libats/ML/DATS/string.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/DATS/string.dats -------------------------------------------------------------------------------- /libats/ML/HATS/myfunmap.hats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/HATS/myfunmap.hats -------------------------------------------------------------------------------- /libats/ML/HTML/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/ML/HTML/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/HTML/Makefile -------------------------------------------------------------------------------- /libats/ML/HTML/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/ML/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libats/ML/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../share/Makefile.gen -------------------------------------------------------------------------------- /libats/ML/SATS/DOCUGEN/TRYIT/.keeper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libats/ML/SATS/argvec.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/argvec.sats -------------------------------------------------------------------------------- /libats/ML/SATS/array0.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/array0.sats -------------------------------------------------------------------------------- /libats/ML/SATS/atspre.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/atspre.sats -------------------------------------------------------------------------------- /libats/ML/SATS/basis.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/basis.sats -------------------------------------------------------------------------------- /libats/ML/SATS/funmap.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/funmap.sats -------------------------------------------------------------------------------- /libats/ML/SATS/funset.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/funset.sats -------------------------------------------------------------------------------- /libats/ML/SATS/gvalue.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/gvalue.sats -------------------------------------------------------------------------------- /libats/ML/SATS/list0.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/list0.sats -------------------------------------------------------------------------------- /libats/ML/SATS/stdlib.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/stdlib.sats -------------------------------------------------------------------------------- /libats/ML/SATS/strarr.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/strarr.sats -------------------------------------------------------------------------------- /libats/ML/SATS/stream.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/stream.sats -------------------------------------------------------------------------------- /libats/ML/SATS/string.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/ML/SATS/string.sats -------------------------------------------------------------------------------- /libats/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libats/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../share/Makefile.gen -------------------------------------------------------------------------------- /libats/SATS/DOCUGEN/TRYIT/.keeper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libats/SATS/athread.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/athread.sats -------------------------------------------------------------------------------- /libats/SATS/bitvec.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/bitvec.sats -------------------------------------------------------------------------------- /libats/SATS/deqarray.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/deqarray.sats -------------------------------------------------------------------------------- /libats/SATS/dllist.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/dllist.sats -------------------------------------------------------------------------------- /libats/SATS/dynarray.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/dynarray.sats -------------------------------------------------------------------------------- /libats/SATS/funarray.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/funarray.sats -------------------------------------------------------------------------------- /libats/SATS/gfarray.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/gfarray.sats -------------------------------------------------------------------------------- /libats/SATS/gflist.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/gflist.sats -------------------------------------------------------------------------------- /libats/SATS/gflist_vt.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/gflist_vt.sats -------------------------------------------------------------------------------- /libats/SATS/gmatrix.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/gmatrix.sats -------------------------------------------------------------------------------- /libats/SATS/gnode.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/gnode.sats -------------------------------------------------------------------------------- /libats/SATS/gvector.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/gvector.sats -------------------------------------------------------------------------------- /libats/SATS/hashfun.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/hashfun.sats -------------------------------------------------------------------------------- /libats/SATS/ilist_prf.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/ilist_prf.sats -------------------------------------------------------------------------------- /libats/SATS/qlist.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/qlist.sats -------------------------------------------------------------------------------- /libats/SATS/refcount.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/refcount.sats -------------------------------------------------------------------------------- /libats/SATS/sllist.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/sllist.sats -------------------------------------------------------------------------------- /libats/SATS/stkarray.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/stkarray.sats -------------------------------------------------------------------------------- /libats/SATS/stklist.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/stklist.sats -------------------------------------------------------------------------------- /libats/SATS/stringbuf.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/stringbuf.sats -------------------------------------------------------------------------------- /libats/SATS/strobjref.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/strobjref.sats -------------------------------------------------------------------------------- /libats/SATS/typeval.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/SATS/typeval.sats -------------------------------------------------------------------------------- /libats/TEST/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/TEST/Makefile -------------------------------------------------------------------------------- /libats/libc/CATS/math.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/libc/CATS/math.cats -------------------------------------------------------------------------------- /libats/libc/CATS/time.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/libc/CATS/time.cats -------------------------------------------------------------------------------- /libats/libc/DATS/arpa/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/libc/DATS/gdbm/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/libc/DATS/math.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/libc/DATS/math.dats -------------------------------------------------------------------------------- /libats/libc/DATS/netinet/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/libc/DATS/time.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/libc/DATS/time.dats -------------------------------------------------------------------------------- /libats/libc/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/libc/HTML/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/libc/HTML/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/libc/HTML/Makefile -------------------------------------------------------------------------------- /libats/libc/HTML/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libats/libc/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libats/libc/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../share/Makefile.gen -------------------------------------------------------------------------------- /libats/libc/SATS/DOCUGEN/TRYIT/.keeper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libats/libc/SATS/math.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/libc/SATS/math.sats -------------------------------------------------------------------------------- /libats/libc/SATS/sys/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../../share/Makefile.gen -------------------------------------------------------------------------------- /libats/libc/SATS/time.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/libats/libc/SATS/time.sats -------------------------------------------------------------------------------- /nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/nix/README.md -------------------------------------------------------------------------------- /nix/build.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/nix/build.nix -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/nix/default.nix -------------------------------------------------------------------------------- /nix/path_hack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/nix/path_hack.sh -------------------------------------------------------------------------------- /nix/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/nix/shell.nix -------------------------------------------------------------------------------- /nix/tarball.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/nix/tarball.nix -------------------------------------------------------------------------------- /npm-utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/npm-utils/README -------------------------------------------------------------------------------- /npm-utils/contrib/atscntrb/ats1-libatsopt/BUILD/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm-utils/contrib/atscntrb/ats1-libatsopt/ccomp/atslib/lib/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm-utils/contrib/atscntrb/atscntrb-hx-libcairo/CATS/cairo.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/cairo.cats -------------------------------------------------------------------------------- /npm-utils/contrib/atscntrb/atscntrb-hx-libcairo/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /npm-utils/contrib/atscntrb/atscntrb-hx-libevent/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm-utils/contrib/atscntrb/atscntrb-hx-libevent/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm-utils/contrib/atscntrb/atscntrb-hx-libevent/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../../share/Makefile.gen -------------------------------------------------------------------------------- /npm-utils/contrib/atscntrb/atscntrb-hx-libsdl2/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm-utils/contrib/atscntrb/atscntrb-hx-libsdl2/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../../../share/Makefile.gen -------------------------------------------------------------------------------- /npm-utils/contrib/libats-/hwxi/OpenSCAD/TEST/output/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm-utils/contrib/libats-hwxi: -------------------------------------------------------------------------------- 1 | libats-/hwxi -------------------------------------------------------------------------------- /prelude/CATS/CODEGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../share/Makefile.gen -------------------------------------------------------------------------------- /prelude/CATS/array.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/array.cats -------------------------------------------------------------------------------- /prelude/CATS/arrayptr.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/arrayptr.cats -------------------------------------------------------------------------------- /prelude/CATS/arrayref.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/arrayref.cats -------------------------------------------------------------------------------- /prelude/CATS/basics.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/basics.cats -------------------------------------------------------------------------------- /prelude/CATS/bool.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/bool.cats -------------------------------------------------------------------------------- /prelude/CATS/char.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/char.cats -------------------------------------------------------------------------------- /prelude/CATS/filebas.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/filebas.cats -------------------------------------------------------------------------------- /prelude/CATS/float.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/float.cats -------------------------------------------------------------------------------- /prelude/CATS/fprintf.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/fprintf.cats -------------------------------------------------------------------------------- /prelude/CATS/integer.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer.cats -------------------------------------------------------------------------------- /prelude/CATS/integer_fixed.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_fixed.cats -------------------------------------------------------------------------------- /prelude/CATS/integer_long.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_long.cats -------------------------------------------------------------------------------- /prelude/CATS/integer_ptr.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_ptr.cats -------------------------------------------------------------------------------- /prelude/CATS/integer_short.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_short.cats -------------------------------------------------------------------------------- /prelude/CATS/integer_size.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_size.cats -------------------------------------------------------------------------------- /prelude/CATS/list.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/list.cats -------------------------------------------------------------------------------- /prelude/CATS/list_vt.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/list_vt.cats -------------------------------------------------------------------------------- /prelude/CATS/matrix.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/matrix.cats -------------------------------------------------------------------------------- /prelude/CATS/matrixptr.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/matrixptr.cats -------------------------------------------------------------------------------- /prelude/CATS/matrixref.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/matrixref.cats -------------------------------------------------------------------------------- /prelude/CATS/memory.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/memory.cats -------------------------------------------------------------------------------- /prelude/CATS/option.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/option.cats -------------------------------------------------------------------------------- /prelude/CATS/pointer.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/pointer.cats -------------------------------------------------------------------------------- /prelude/CATS/string.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/string.cats -------------------------------------------------------------------------------- /prelude/CATS/strptr.cats: -------------------------------------------------------------------------------- 1 | CODEGEN/strptr.cats -------------------------------------------------------------------------------- /prelude/DATS/CODEGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../share/Makefile.gen -------------------------------------------------------------------------------- /prelude/DATS/SHARE/CODEGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../share/Makefile.gen -------------------------------------------------------------------------------- /prelude/DATS/SHARE/array_bsearch.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/array_bsearch.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/array_quicksort.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/array_quicksort.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/gnumber_float.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gnumber_float.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/gnumber_int.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gnumber_int.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/gnumber_uint.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gnumber_uint.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/gorder_bool.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gorder_bool.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/gorder_char.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gorder_char.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/gorder_float.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gorder_float.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/gorder_int.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gorder_int.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/gorder_string.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gorder_string.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/gorder_uint.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gorder_uint.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/list_vt_mergesort.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/list_vt_mergesort.dats -------------------------------------------------------------------------------- /prelude/DATS/SHARE/list_vt_quicksort.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/list_vt_quicksort.dats -------------------------------------------------------------------------------- /prelude/DATS/arith_prf.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/arith_prf.dats -------------------------------------------------------------------------------- /prelude/DATS/array.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/array.dats -------------------------------------------------------------------------------- /prelude/DATS/array_prf.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/array_prf.dats -------------------------------------------------------------------------------- /prelude/DATS/arrayptr.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/arrayptr.dats -------------------------------------------------------------------------------- /prelude/DATS/arrayref.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/arrayref.dats -------------------------------------------------------------------------------- /prelude/DATS/basics.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/basics.dats -------------------------------------------------------------------------------- /prelude/DATS/bool.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/bool.dats -------------------------------------------------------------------------------- /prelude/DATS/char.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/char.dats -------------------------------------------------------------------------------- /prelude/DATS/checkast.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/checkast.dats -------------------------------------------------------------------------------- /prelude/DATS/filebas.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/filebas.dats -------------------------------------------------------------------------------- /prelude/DATS/filebas_dirent.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/filebas_dirent.dats -------------------------------------------------------------------------------- /prelude/DATS/filebas_prf.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/filebas_prf.dats -------------------------------------------------------------------------------- /prelude/DATS/float.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/float.dats -------------------------------------------------------------------------------- /prelude/DATS/gnumber.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gnumber.dats -------------------------------------------------------------------------------- /prelude/DATS/gorder.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gorder.dats -------------------------------------------------------------------------------- /prelude/DATS/gprint.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/gprint.dats -------------------------------------------------------------------------------- /prelude/DATS/grandom.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/grandom.dats -------------------------------------------------------------------------------- /prelude/DATS/integer.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer.dats -------------------------------------------------------------------------------- /prelude/DATS/integer_fixed.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_fixed.dats -------------------------------------------------------------------------------- /prelude/DATS/integer_long.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_long.dats -------------------------------------------------------------------------------- /prelude/DATS/integer_ptr.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_ptr.dats -------------------------------------------------------------------------------- /prelude/DATS/integer_short.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_short.dats -------------------------------------------------------------------------------- /prelude/DATS/integer_size.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_size.dats -------------------------------------------------------------------------------- /prelude/DATS/intrange.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/intrange.dats -------------------------------------------------------------------------------- /prelude/DATS/list.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/list.dats -------------------------------------------------------------------------------- /prelude/DATS/list_vt.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/list_vt.dats -------------------------------------------------------------------------------- /prelude/DATS/matrix.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/matrix.dats -------------------------------------------------------------------------------- /prelude/DATS/matrixptr.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/matrixptr.dats -------------------------------------------------------------------------------- /prelude/DATS/matrixref.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/matrixref.dats -------------------------------------------------------------------------------- /prelude/DATS/memory.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/memory.dats -------------------------------------------------------------------------------- /prelude/DATS/option.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/option.dats -------------------------------------------------------------------------------- /prelude/DATS/option_vt.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/option_vt.dats -------------------------------------------------------------------------------- /prelude/DATS/parray.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/parray.dats -------------------------------------------------------------------------------- /prelude/DATS/pointer.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/pointer.dats -------------------------------------------------------------------------------- /prelude/DATS/reference.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/reference.dats -------------------------------------------------------------------------------- /prelude/DATS/stream.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/stream.dats -------------------------------------------------------------------------------- /prelude/DATS/stream_vt.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/stream_vt.dats -------------------------------------------------------------------------------- /prelude/DATS/string.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/string.dats -------------------------------------------------------------------------------- /prelude/DATS/strptr.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/strptr.dats -------------------------------------------------------------------------------- /prelude/DATS/tostring.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/tostring.dats -------------------------------------------------------------------------------- /prelude/DATS/tuple.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/tuple.dats -------------------------------------------------------------------------------- /prelude/DATS/unsafe.dats: -------------------------------------------------------------------------------- 1 | CODEGEN/unsafe.dats -------------------------------------------------------------------------------- /prelude/HTML/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/HTML/.gitignore -------------------------------------------------------------------------------- /prelude/HTML/DATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prelude/HTML/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/HTML/Makefile -------------------------------------------------------------------------------- /prelude/HTML/SATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prelude/SATS/CODEGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../share/Makefile.gen -------------------------------------------------------------------------------- /prelude/SATS/DOCUGEN/DBOOK/HTML/.keeper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /prelude/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /prelude/SATS/DOCUGEN/Makefile.atxt: -------------------------------------------------------------------------------- 1 | Makefile_html.atxt -------------------------------------------------------------------------------- /prelude/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../share/Makefile.gen -------------------------------------------------------------------------------- /prelude/SATS/DOCUGEN/TRYIT/.keeper: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /prelude/SATS/arith_prf.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/arith_prf.sats -------------------------------------------------------------------------------- /prelude/SATS/array.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/array.sats -------------------------------------------------------------------------------- /prelude/SATS/array_prf.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/array_prf.sats -------------------------------------------------------------------------------- /prelude/SATS/arrayptr.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/arrayptr.sats -------------------------------------------------------------------------------- /prelude/SATS/arrayref.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/arrayref.sats -------------------------------------------------------------------------------- /prelude/SATS/bool.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/bool.sats -------------------------------------------------------------------------------- /prelude/SATS/char.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/char.sats -------------------------------------------------------------------------------- /prelude/SATS/checkast.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/checkast.sats -------------------------------------------------------------------------------- /prelude/SATS/extern.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/extern.sats -------------------------------------------------------------------------------- /prelude/SATS/filebas.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/filebas.sats -------------------------------------------------------------------------------- /prelude/SATS/float.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/float.sats -------------------------------------------------------------------------------- /prelude/SATS/gnumber.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/gnumber.sats -------------------------------------------------------------------------------- /prelude/SATS/gorder.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/gorder.sats -------------------------------------------------------------------------------- /prelude/SATS/gprint.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/gprint.sats -------------------------------------------------------------------------------- /prelude/SATS/grandom.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/grandom.sats -------------------------------------------------------------------------------- /prelude/SATS/integer.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer.sats -------------------------------------------------------------------------------- /prelude/SATS/integer_fixed.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_fixed.sats -------------------------------------------------------------------------------- /prelude/SATS/integer_long.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_long.sats -------------------------------------------------------------------------------- /prelude/SATS/integer_ptr.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_ptr.sats -------------------------------------------------------------------------------- /prelude/SATS/integer_short.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_short.sats -------------------------------------------------------------------------------- /prelude/SATS/integer_size.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/integer_size.sats -------------------------------------------------------------------------------- /prelude/SATS/intrange.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/intrange.sats -------------------------------------------------------------------------------- /prelude/SATS/list.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/list.sats -------------------------------------------------------------------------------- /prelude/SATS/list_vt.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/list_vt.sats -------------------------------------------------------------------------------- /prelude/SATS/matrix.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/matrix.sats -------------------------------------------------------------------------------- /prelude/SATS/matrixptr.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/matrixptr.sats -------------------------------------------------------------------------------- /prelude/SATS/matrixref.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/matrixref.sats -------------------------------------------------------------------------------- /prelude/SATS/memory.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/memory.sats -------------------------------------------------------------------------------- /prelude/SATS/option.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/option.sats -------------------------------------------------------------------------------- /prelude/SATS/option_vt.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/option_vt.sats -------------------------------------------------------------------------------- /prelude/SATS/parray.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/parray.sats -------------------------------------------------------------------------------- /prelude/SATS/pointer.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/pointer.sats -------------------------------------------------------------------------------- /prelude/SATS/reference.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/reference.sats -------------------------------------------------------------------------------- /prelude/SATS/stream.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/stream.sats -------------------------------------------------------------------------------- /prelude/SATS/stream_vt.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/stream_vt.sats -------------------------------------------------------------------------------- /prelude/SATS/string.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/string.sats -------------------------------------------------------------------------------- /prelude/SATS/strptr.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/strptr.sats -------------------------------------------------------------------------------- /prelude/SATS/tostring.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/tostring.sats -------------------------------------------------------------------------------- /prelude/SATS/tuple.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/tuple.sats -------------------------------------------------------------------------------- /prelude/SATS/unsafe.sats: -------------------------------------------------------------------------------- 1 | CODEGEN/unsafe.sats -------------------------------------------------------------------------------- /prelude/basics_dyn.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/basics_dyn.sats -------------------------------------------------------------------------------- /prelude/basics_gen.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/basics_gen.sats -------------------------------------------------------------------------------- /prelude/basics_pre.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/basics_pre.sats -------------------------------------------------------------------------------- /prelude/basics_sta.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/basics_sta.sats -------------------------------------------------------------------------------- /prelude/codegen2.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/codegen2.sats -------------------------------------------------------------------------------- /prelude/fixity.ats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/fixity.ats -------------------------------------------------------------------------------- /prelude/lmacrodef.hats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/lmacrodef.hats -------------------------------------------------------------------------------- /prelude/macrodef.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/macrodef.sats -------------------------------------------------------------------------------- /prelude/params.hats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/prelude/params.hats -------------------------------------------------------------------------------- /share/H/pats_atslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/share/H/pats_atslib.h -------------------------------------------------------------------------------- /share/Makefile.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/share/Makefile.gen -------------------------------------------------------------------------------- /share/SCRIPT/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /share/SCRIPT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/share/SCRIPT/Makefile -------------------------------------------------------------------------------- /share/atsmake-post.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/share/atsmake-post.mk -------------------------------------------------------------------------------- /share/atsmake-pre.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/share/atsmake-pre.mk -------------------------------------------------------------------------------- /share/atspre_define.hats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/share/atspre_define.hats -------------------------------------------------------------------------------- /share/atspre_staload.hats: -------------------------------------------------------------------------------- 1 | HATS/atspre_staload_prelude.hats -------------------------------------------------------------------------------- /share/atspre_staload_libats_ML.hats: -------------------------------------------------------------------------------- 1 | HATS/atspre_staload_libats_ML.hats -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- 1 | nix/shell.nix -------------------------------------------------------------------------------- /src/CBOOT/JS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/CBOOT/JS/Makefile -------------------------------------------------------------------------------- /src/CBOOT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/CBOOT/README -------------------------------------------------------------------------------- /src/CBOOT/ccomp/runtime/GCATS/m32/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CBOOT/ccomp/runtime/GCATS/m64/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CBOOT/config.h: -------------------------------------------------------------------------------- 1 | ../../config.h -------------------------------------------------------------------------------- /src/CBOOT/libats/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/CBOOT/libats/Makefile -------------------------------------------------------------------------------- /src/CBOOT/libc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/CBOOT/libc/Makefile -------------------------------------------------------------------------------- /src/CBOOT/prelude/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/CBOOT/prelude/Makefile -------------------------------------------------------------------------------- /src/CMKBLD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/CMKBLD/.gitignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.atxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/Makefile.atxt -------------------------------------------------------------------------------- /src/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../share/Makefile.gen -------------------------------------------------------------------------------- /src/Makefile_CBOOTgmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/Makefile_CBOOTgmp -------------------------------------------------------------------------------- /src/Makefile_CBOOTint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/Makefile_CBOOTint -------------------------------------------------------------------------------- /src/pats_atspre.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_atspre.dats -------------------------------------------------------------------------------- /src/pats_basics.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_basics.dats -------------------------------------------------------------------------------- /src/pats_basics.hats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_basics.hats -------------------------------------------------------------------------------- /src/pats_basics.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_basics.sats -------------------------------------------------------------------------------- /src/pats_ccomp.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp.dats -------------------------------------------------------------------------------- /src/pats_ccomp.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp.sats -------------------------------------------------------------------------------- /src/pats_ccomp_caseof.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_caseof.dats -------------------------------------------------------------------------------- /src/pats_ccomp_d2env.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_d2env.dats -------------------------------------------------------------------------------- /src/pats_ccomp_decl.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_decl.dats -------------------------------------------------------------------------------- /src/pats_ccomp_dynexp.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_dynexp.dats -------------------------------------------------------------------------------- /src/pats_ccomp_emit.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_emit.dats -------------------------------------------------------------------------------- /src/pats_ccomp_emit2.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_emit2.dats -------------------------------------------------------------------------------- /src/pats_ccomp_emit3.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_emit3.dats -------------------------------------------------------------------------------- /src/pats_ccomp_funent.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_funent.dats -------------------------------------------------------------------------------- /src/pats_ccomp_funlab.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_funlab.dats -------------------------------------------------------------------------------- /src/pats_ccomp_hipat.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_hipat.dats -------------------------------------------------------------------------------- /src/pats_ccomp_hitype.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_hitype.dats -------------------------------------------------------------------------------- /src/pats_ccomp_main.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_main.dats -------------------------------------------------------------------------------- /src/pats_ccomp_print.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_print.dats -------------------------------------------------------------------------------- /src/pats_ccomp_subst.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_subst.dats -------------------------------------------------------------------------------- /src/pats_ccomp_tmplab.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_tmplab.dats -------------------------------------------------------------------------------- /src/pats_ccomp_tmpvar.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_tmpvar.dats -------------------------------------------------------------------------------- /src/pats_ccomp_util.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_ccomp_util.dats -------------------------------------------------------------------------------- /src/pats_codegen2.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_codegen2.dats -------------------------------------------------------------------------------- /src/pats_codegen2.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_codegen2.sats -------------------------------------------------------------------------------- /src/pats_comarg.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_comarg.dats -------------------------------------------------------------------------------- /src/pats_comarg.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_comarg.sats -------------------------------------------------------------------------------- /src/pats_constraint3.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_constraint3.dats -------------------------------------------------------------------------------- /src/pats_constraint3.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_constraint3.sats -------------------------------------------------------------------------------- /src/pats_counter.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_counter.dats -------------------------------------------------------------------------------- /src/pats_counter.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_counter.sats -------------------------------------------------------------------------------- /src/pats_depgen.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_depgen.dats -------------------------------------------------------------------------------- /src/pats_depgen.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_depgen.sats -------------------------------------------------------------------------------- /src/pats_dmacro2.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dmacro2.dats -------------------------------------------------------------------------------- /src/pats_dmacro2.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dmacro2.sats -------------------------------------------------------------------------------- /src/pats_dyncst2.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dyncst2.dats -------------------------------------------------------------------------------- /src/pats_dyncst2.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dyncst2.sats -------------------------------------------------------------------------------- /src/pats_dynexp1.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dynexp1.dats -------------------------------------------------------------------------------- /src/pats_dynexp1.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dynexp1.sats -------------------------------------------------------------------------------- /src/pats_dynexp2.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dynexp2.dats -------------------------------------------------------------------------------- /src/pats_dynexp2.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dynexp2.sats -------------------------------------------------------------------------------- /src/pats_dynexp2_dcst.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dynexp2_dcst.dats -------------------------------------------------------------------------------- /src/pats_dynexp2_dmac.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dynexp2_dmac.dats -------------------------------------------------------------------------------- /src/pats_dynexp2_dvar.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dynexp2_dvar.dats -------------------------------------------------------------------------------- /src/pats_dynexp2_util.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dynexp2_util.dats -------------------------------------------------------------------------------- /src/pats_dynexp3.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dynexp3.dats -------------------------------------------------------------------------------- /src/pats_dynexp3.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_dynexp3.sats -------------------------------------------------------------------------------- /src/pats_e1xpval.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_e1xpval.dats -------------------------------------------------------------------------------- /src/pats_e1xpval.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_e1xpval.sats -------------------------------------------------------------------------------- /src/pats_effect.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_effect.dats -------------------------------------------------------------------------------- /src/pats_effect.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_effect.sats -------------------------------------------------------------------------------- /src/pats_errmsg.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_errmsg.dats -------------------------------------------------------------------------------- /src/pats_errmsg.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_errmsg.sats -------------------------------------------------------------------------------- /src/pats_error.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_error.dats -------------------------------------------------------------------------------- /src/pats_error.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_error.sats -------------------------------------------------------------------------------- /src/pats_filename.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_filename.dats -------------------------------------------------------------------------------- /src/pats_filename.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_filename.sats -------------------------------------------------------------------------------- /src/pats_fixity.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_fixity.sats -------------------------------------------------------------------------------- /src/pats_fixity_fxty.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_fixity_fxty.dats -------------------------------------------------------------------------------- /src/pats_fixity_prec.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_fixity_prec.dats -------------------------------------------------------------------------------- /src/pats_global.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_global.dats -------------------------------------------------------------------------------- /src/pats_global.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_global.sats -------------------------------------------------------------------------------- /src/pats_hidynexp.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_hidynexp.dats -------------------------------------------------------------------------------- /src/pats_hidynexp.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_hidynexp.sats -------------------------------------------------------------------------------- /src/pats_histaexp.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_histaexp.dats -------------------------------------------------------------------------------- /src/pats_histaexp.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_histaexp.sats -------------------------------------------------------------------------------- /src/pats_intinf.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_intinf.dats -------------------------------------------------------------------------------- /src/pats_intinf.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_intinf.sats -------------------------------------------------------------------------------- /src/pats_intinf_gmp.hats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_intinf_gmp.hats -------------------------------------------------------------------------------- /src/pats_intinf_int.hats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_intinf_int.hats -------------------------------------------------------------------------------- /src/pats_jsonize.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_jsonize.dats -------------------------------------------------------------------------------- /src/pats_jsonize.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_jsonize.sats -------------------------------------------------------------------------------- /src/pats_label.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_label.dats -------------------------------------------------------------------------------- /src/pats_label.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_label.sats -------------------------------------------------------------------------------- /src/pats_lexbuf.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lexbuf.cats -------------------------------------------------------------------------------- /src/pats_lexbuf.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lexbuf.dats -------------------------------------------------------------------------------- /src/pats_lexbuf.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lexbuf.sats -------------------------------------------------------------------------------- /src/pats_lexing.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lexing.cats -------------------------------------------------------------------------------- /src/pats_lexing.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lexing.dats -------------------------------------------------------------------------------- /src/pats_lexing.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lexing.sats -------------------------------------------------------------------------------- /src/pats_lexing_error.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lexing_error.dats -------------------------------------------------------------------------------- /src/pats_lexing_print.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lexing_print.dats -------------------------------------------------------------------------------- /src/pats_lexing_token.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lexing_token.dats -------------------------------------------------------------------------------- /src/pats_lintprgm.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lintprgm.dats -------------------------------------------------------------------------------- /src/pats_lintprgm.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_lintprgm.sats -------------------------------------------------------------------------------- /src/pats_location.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_location.cats -------------------------------------------------------------------------------- /src/pats_location.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_location.dats -------------------------------------------------------------------------------- /src/pats_location.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_location.sats -------------------------------------------------------------------------------- /src/pats_main.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_main.dats -------------------------------------------------------------------------------- /src/pats_namespace.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_namespace.dats -------------------------------------------------------------------------------- /src/pats_namespace.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_namespace.sats -------------------------------------------------------------------------------- /src/pats_params.hats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_params.hats -------------------------------------------------------------------------------- /src/pats_parsing.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_parsing.dats -------------------------------------------------------------------------------- /src/pats_parsing.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_parsing.sats -------------------------------------------------------------------------------- /src/pats_parsing_base.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_parsing_base.dats -------------------------------------------------------------------------------- /src/pats_parsing_decl.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_parsing_decl.dats -------------------------------------------------------------------------------- /src/pats_parsing_e0xp.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_parsing_e0xp.dats -------------------------------------------------------------------------------- /src/pats_parsing_kwds.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_parsing_kwds.dats -------------------------------------------------------------------------------- /src/pats_parsing_p0at.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_parsing_p0at.dats -------------------------------------------------------------------------------- /src/pats_parsing_sort.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_parsing_sort.dats -------------------------------------------------------------------------------- /src/pats_parsing_util.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_parsing_util.dats -------------------------------------------------------------------------------- /src/pats_patcst2.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_patcst2.dats -------------------------------------------------------------------------------- /src/pats_patcst2.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_patcst2.sats -------------------------------------------------------------------------------- /src/pats_reader.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_reader.cats -------------------------------------------------------------------------------- /src/pats_reader.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_reader.dats -------------------------------------------------------------------------------- /src/pats_reader.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_reader.sats -------------------------------------------------------------------------------- /src/pats_stacst2.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_stacst2.dats -------------------------------------------------------------------------------- /src/pats_stacst2.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_stacst2.sats -------------------------------------------------------------------------------- /src/pats_staexp1.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp1.dats -------------------------------------------------------------------------------- /src/pats_staexp1.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp1.sats -------------------------------------------------------------------------------- /src/pats_staexp2.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp2.dats -------------------------------------------------------------------------------- /src/pats_staexp2.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp2.sats -------------------------------------------------------------------------------- /src/pats_staexp2_ctxt.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp2_ctxt.dats -------------------------------------------------------------------------------- /src/pats_staexp2_dcon.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp2_dcon.dats -------------------------------------------------------------------------------- /src/pats_staexp2_hole.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp2_hole.dats -------------------------------------------------------------------------------- /src/pats_staexp2_scst.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp2_scst.dats -------------------------------------------------------------------------------- /src/pats_staexp2_sort.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp2_sort.dats -------------------------------------------------------------------------------- /src/pats_staexp2_svar.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp2_svar.dats -------------------------------------------------------------------------------- /src/pats_staexp2_util.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_staexp2_util.sats -------------------------------------------------------------------------------- /src/pats_stamp.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_stamp.dats -------------------------------------------------------------------------------- /src/pats_stamp.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_stamp.sats -------------------------------------------------------------------------------- /src/pats_symbol.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_symbol.dats -------------------------------------------------------------------------------- /src/pats_symbol.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_symbol.sats -------------------------------------------------------------------------------- /src/pats_symenv.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_symenv.dats -------------------------------------------------------------------------------- /src/pats_symenv.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_symenv.sats -------------------------------------------------------------------------------- /src/pats_symmap.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_symmap.dats -------------------------------------------------------------------------------- /src/pats_symmap.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_symmap.sats -------------------------------------------------------------------------------- /src/pats_syntax.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_syntax.dats -------------------------------------------------------------------------------- /src/pats_syntax.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_syntax.sats -------------------------------------------------------------------------------- /src/pats_syntax_print.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_syntax_print.dats -------------------------------------------------------------------------------- /src/pats_taggen.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_taggen.dats -------------------------------------------------------------------------------- /src/pats_taggen.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_taggen.sats -------------------------------------------------------------------------------- /src/pats_tokbuf.cats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_tokbuf.cats -------------------------------------------------------------------------------- /src/pats_tokbuf.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_tokbuf.dats -------------------------------------------------------------------------------- /src/pats_tokbuf.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_tokbuf.sats -------------------------------------------------------------------------------- /src/pats_trans1.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans1.sats -------------------------------------------------------------------------------- /src/pats_trans1_decl.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans1_decl.dats -------------------------------------------------------------------------------- /src/pats_trans1_e0xp.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans1_e0xp.dats -------------------------------------------------------------------------------- /src/pats_trans1_env.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans1_env.dats -------------------------------------------------------------------------------- /src/pats_trans1_env.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans1_env.sats -------------------------------------------------------------------------------- /src/pats_trans1_error.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans1_error.dats -------------------------------------------------------------------------------- /src/pats_trans1_p0at.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans1_p0at.dats -------------------------------------------------------------------------------- /src/pats_trans1_sort.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans1_sort.dats -------------------------------------------------------------------------------- /src/pats_trans2.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans2.sats -------------------------------------------------------------------------------- /src/pats_trans2_decl.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans2_decl.dats -------------------------------------------------------------------------------- /src/pats_trans2_env.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans2_env.dats -------------------------------------------------------------------------------- /src/pats_trans2_env.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans2_env.sats -------------------------------------------------------------------------------- /src/pats_trans2_error.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans2_error.dats -------------------------------------------------------------------------------- /src/pats_trans2_p1at.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans2_p1at.dats -------------------------------------------------------------------------------- /src/pats_trans2_sort.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans2_sort.dats -------------------------------------------------------------------------------- /src/pats_trans3.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3.sats -------------------------------------------------------------------------------- /src/pats_trans3_assgn.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_assgn.dats -------------------------------------------------------------------------------- /src/pats_trans3_decl.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_decl.dats -------------------------------------------------------------------------------- /src/pats_trans3_deref.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_deref.dats -------------------------------------------------------------------------------- /src/pats_trans3_env.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_env.dats -------------------------------------------------------------------------------- /src/pats_trans3_env.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_env.sats -------------------------------------------------------------------------------- /src/pats_trans3_error.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_error.dats -------------------------------------------------------------------------------- /src/pats_trans3_p2at.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_p2at.dats -------------------------------------------------------------------------------- /src/pats_trans3_ptrof.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_ptrof.dats -------------------------------------------------------------------------------- /src/pats_trans3_selab.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_selab.dats -------------------------------------------------------------------------------- /src/pats_trans3_util.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_util.dats -------------------------------------------------------------------------------- /src/pats_trans3_xchng.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_trans3_xchng.dats -------------------------------------------------------------------------------- /src/pats_typerase.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_typerase.sats -------------------------------------------------------------------------------- /src/pats_utils.dats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_utils.dats -------------------------------------------------------------------------------- /src/pats_utils.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/src/pats_utils.sats -------------------------------------------------------------------------------- /travis-ci/install-ats1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/travis-ci/install-ats1.sh -------------------------------------------------------------------------------- /travis-ci/install-pkgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/travis-ci/install-pkgs.sh -------------------------------------------------------------------------------- /travis-ci/travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/travis-ci/travis.yml -------------------------------------------------------------------------------- /utils/MISC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/MISC/Makefile -------------------------------------------------------------------------------- /utils/MISC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/MISC/README -------------------------------------------------------------------------------- /utils/MISC/wgetccrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/MISC/wgetccrun.sh -------------------------------------------------------------------------------- /utils/atexting/CATS/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/atexting/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/atexting/README -------------------------------------------------------------------------------- /utils/ats2srcgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/ats2srcgen/Makefile -------------------------------------------------------------------------------- /utils/ats2srcgen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/ats2srcgen/README -------------------------------------------------------------------------------- /utils/atscc/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/atscc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/atscc/Makefile -------------------------------------------------------------------------------- /utils/atscc/Makefile_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/atscc/Makefile_build -------------------------------------------------------------------------------- /utils/atscc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/atscc/README -------------------------------------------------------------------------------- /utils/atslex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/atslex/Makefile -------------------------------------------------------------------------------- /utils/atslex/atslex.sats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/atslex/atslex.sats -------------------------------------------------------------------------------- /utils/atsreloc/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/atsreloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/atsreloc/Makefile -------------------------------------------------------------------------------- /utils/atsreloc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/atsreloc/README.md -------------------------------------------------------------------------------- /utils/atsynmark/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/atsynmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/atsynmark/Makefile -------------------------------------------------------------------------------- /utils/atsynmark/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/atsynmark/README -------------------------------------------------------------------------------- /utils/emacs/ats2-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/emacs/ats2-mode.el -------------------------------------------------------------------------------- /utils/libatslex/SATS/DOCUGEN/HTML/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/libatslex/SATS/DOCUGEN/Makefile.gen: -------------------------------------------------------------------------------- 1 | ../../../../share/Makefile.gen -------------------------------------------------------------------------------- /utils/libatslex/SATS/DOCUGEN/TRYIT/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/libatsopt/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/libatsopt/JS/TEST/myout/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/libatsopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/libatsopt/Makefile -------------------------------------------------------------------------------- /utils/libatsopt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/libatsopt/README -------------------------------------------------------------------------------- /utils/libatsynmark/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/myatscc/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/myatscc/BUILD/node_modules: -------------------------------------------------------------------------------- 1 | ../node_modules -------------------------------------------------------------------------------- /utils/myatscc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/myatscc/Makefile -------------------------------------------------------------------------------- /utils/myatscc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/myatscc/README -------------------------------------------------------------------------------- /utils/mytempacc/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/mytempacc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/mytempacc/Makefile -------------------------------------------------------------------------------- /utils/packeditall/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/packeditall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/packeditall/Makefile -------------------------------------------------------------------------------- /utils/packeditall/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/packeditall/README -------------------------------------------------------------------------------- /utils/tempacc/BUILD/.keeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/tempacc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/tempacc/Makefile -------------------------------------------------------------------------------- /utils/tempacc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githwxi/ATS-Postiats/HEAD/utils/tempacc/README --------------------------------------------------------------------------------