├── LICENSE ├── Makefile.am ├── Makefile.in ├── PyAttr.cpp ├── PyAttr.h ├── PyBool.cpp ├── PyBool.h ├── PyBuiltInConcat.cpp ├── PyBuiltInConcat.h ├── PyBuiltInFPrint.cpp ├── PyBuiltInFPrint.h ├── PyBuiltInInput.cpp ├── PyBuiltInInput.h ├── PyBuiltInIter.cpp ├── PyBuiltInIter.h ├── PyBuiltInLen.cpp ├── PyBuiltInLen.h ├── PyBuiltInPrint.cpp ├── PyBuiltInPrint.h ├── PyBuiltInTPrint.cpp ├── PyBuiltInTPrint.h ├── PyByteCode.cpp ├── PyByteCode.h ├── PyCallable.cpp ├── PyCallable.h ├── PyCell.cpp ├── PyCell.h ├── PyCode.cpp ├── PyCode.h ├── PyException.cpp ├── PyException.h ├── PyExceptionType.cpp ├── PyExceptionType.h ├── PyFloat.cpp ├── PyFloat.h ├── PyFrame.cpp ├── PyFrame.h ├── PyFunList.cpp ├── PyFunList.h ├── PyFunListIterator.cpp ├── PyFunListIterator.h ├── PyFunction.cpp ├── PyFunction.h ├── PyInt.cpp ├── PyInt.h ├── PyList.cpp ├── PyList.h ├── PyListIterator.cpp ├── PyListIterator.h ├── PyNone.cpp ├── PyNone.h ├── PyObject.cpp ├── PyObject.h ├── PyParser.cpp ├── PyParser.h ├── PyRange.cpp ├── PyRange.h ├── PyRangeIterator.cpp ├── PyRangeIterator.h ├── PyRangeType.cpp ├── PyRangeType.h ├── PyScanner.cpp ├── PyScanner.h ├── PyStack.h ├── PyStr.cpp ├── PyStr.h ├── PyStrIterator.cpp ├── PyStrIterator.h ├── PyToken.cpp ├── PyToken.h ├── PyTuple.cpp ├── PyTuple.h ├── PyTupleIterator.cpp ├── PyTupleIterator.h ├── PyType.cpp ├── PyType.h ├── PyUtil.cpp ├── PyUtil.h ├── README ├── aclocal.m4 ├── autom4te.cache ├── output.0 ├── output.1 ├── requests ├── traces.0 └── traces.1 ├── config.log ├── config.status ├── configure ├── configure.ac ├── depcomp ├── install-sh ├── main.cpp ├── missing ├── rebuild └── tests ├── __pycache__ └── disassembler.cpython-32.pyc ├── addtwo.casm ├── addtwo.py ├── addtwoints.casm ├── dicttest.casm ├── dicttest.py ├── disassembler.py ├── except.casm ├── except.py ├── exception.casm ├── exception.py ├── fact.casm ├── fact.py ├── factorial.casm ├── factorial.py ├── fib.casm ├── fib.py ├── ifthen.casm ├── ifthen.py ├── ifthenelse.casm ├── ifthenelse.py ├── ifthenelseexp.py ├── inputoutput.casm ├── inputoutput.py ├── iotest.py ├── iterators.casm ├── iterators.py ├── listconstant.casm ├── listconstant.py ├── listiter.casm ├── listiter.py ├── nested.casm ├── nested.py ├── nested2.casm ├── nestedfun.casm ├── nestedfun.py ├── nestedfun2.py ├── print5.casm ├── print5.py ├── printevens.casm ├── printevenstryexcept.casm ├── printtype.casm ├── printtype.py ├── raise.casm ├── raise.py ├── raiseexcept.casm ├── raiseexcept.py ├── raisereduced.casm ├── rangeiter.casm ├── rangeiter.py ├── rangeitertype.casm ├── rangeitertype.py ├── rase2.casm ├── reverse.casm ├── reverse.py ├── split.casm ├── split.py ├── striter.py ├── sumFirstN.casm ├── sumFirstN.py ├── sumFirstNRange.casm ├── sumFirstNRec.casm ├── sumFirstNRec.py ├── test.casm ├── test.py ├── test0.casm ├── test0.py ├── test1.casm ├── test1.py ├── test11.py ├── test13.casm ├── test13.py ├── test14.py ├── test16.py ├── test17.py ├── test18.py ├── test2.py ├── test22.py ├── test26.py ├── test3.py ├── test4.casm ├── test4.py ├── test40.casm ├── test40.py ├── test41.py ├── test5.py ├── test8.py ├── test9.py ├── testCoCo1.casm ├── testCoCo1.py ├── testcall.casm ├── testcall2.casm ├── testit.py ├── testsplit.casm ├── testsplit.py ├── tokens.casm ├── tokens.py └── while.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/Makefile.in -------------------------------------------------------------------------------- /PyAttr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyAttr.cpp -------------------------------------------------------------------------------- /PyAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyAttr.h -------------------------------------------------------------------------------- /PyBool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBool.cpp -------------------------------------------------------------------------------- /PyBool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBool.h -------------------------------------------------------------------------------- /PyBuiltInConcat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInConcat.cpp -------------------------------------------------------------------------------- /PyBuiltInConcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInConcat.h -------------------------------------------------------------------------------- /PyBuiltInFPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInFPrint.cpp -------------------------------------------------------------------------------- /PyBuiltInFPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInFPrint.h -------------------------------------------------------------------------------- /PyBuiltInInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInInput.cpp -------------------------------------------------------------------------------- /PyBuiltInInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInInput.h -------------------------------------------------------------------------------- /PyBuiltInIter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInIter.cpp -------------------------------------------------------------------------------- /PyBuiltInIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInIter.h -------------------------------------------------------------------------------- /PyBuiltInLen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInLen.cpp -------------------------------------------------------------------------------- /PyBuiltInLen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInLen.h -------------------------------------------------------------------------------- /PyBuiltInPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInPrint.cpp -------------------------------------------------------------------------------- /PyBuiltInPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInPrint.h -------------------------------------------------------------------------------- /PyBuiltInTPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInTPrint.cpp -------------------------------------------------------------------------------- /PyBuiltInTPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyBuiltInTPrint.h -------------------------------------------------------------------------------- /PyByteCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyByteCode.cpp -------------------------------------------------------------------------------- /PyByteCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyByteCode.h -------------------------------------------------------------------------------- /PyCallable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyCallable.cpp -------------------------------------------------------------------------------- /PyCallable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyCallable.h -------------------------------------------------------------------------------- /PyCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyCell.cpp -------------------------------------------------------------------------------- /PyCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyCell.h -------------------------------------------------------------------------------- /PyCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyCode.cpp -------------------------------------------------------------------------------- /PyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyCode.h -------------------------------------------------------------------------------- /PyException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyException.cpp -------------------------------------------------------------------------------- /PyException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyException.h -------------------------------------------------------------------------------- /PyExceptionType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyExceptionType.cpp -------------------------------------------------------------------------------- /PyExceptionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyExceptionType.h -------------------------------------------------------------------------------- /PyFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyFloat.cpp -------------------------------------------------------------------------------- /PyFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyFloat.h -------------------------------------------------------------------------------- /PyFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyFrame.cpp -------------------------------------------------------------------------------- /PyFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyFrame.h -------------------------------------------------------------------------------- /PyFunList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyFunList.cpp -------------------------------------------------------------------------------- /PyFunList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyFunList.h -------------------------------------------------------------------------------- /PyFunListIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyFunListIterator.cpp -------------------------------------------------------------------------------- /PyFunListIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyFunListIterator.h -------------------------------------------------------------------------------- /PyFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyFunction.cpp -------------------------------------------------------------------------------- /PyFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyFunction.h -------------------------------------------------------------------------------- /PyInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyInt.cpp -------------------------------------------------------------------------------- /PyInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyInt.h -------------------------------------------------------------------------------- /PyList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyList.cpp -------------------------------------------------------------------------------- /PyList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyList.h -------------------------------------------------------------------------------- /PyListIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyListIterator.cpp -------------------------------------------------------------------------------- /PyListIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyListIterator.h -------------------------------------------------------------------------------- /PyNone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyNone.cpp -------------------------------------------------------------------------------- /PyNone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyNone.h -------------------------------------------------------------------------------- /PyObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyObject.cpp -------------------------------------------------------------------------------- /PyObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyObject.h -------------------------------------------------------------------------------- /PyParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyParser.cpp -------------------------------------------------------------------------------- /PyParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyParser.h -------------------------------------------------------------------------------- /PyRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyRange.cpp -------------------------------------------------------------------------------- /PyRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyRange.h -------------------------------------------------------------------------------- /PyRangeIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyRangeIterator.cpp -------------------------------------------------------------------------------- /PyRangeIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyRangeIterator.h -------------------------------------------------------------------------------- /PyRangeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyRangeType.cpp -------------------------------------------------------------------------------- /PyRangeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyRangeType.h -------------------------------------------------------------------------------- /PyScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyScanner.cpp -------------------------------------------------------------------------------- /PyScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyScanner.h -------------------------------------------------------------------------------- /PyStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyStack.h -------------------------------------------------------------------------------- /PyStr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyStr.cpp -------------------------------------------------------------------------------- /PyStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyStr.h -------------------------------------------------------------------------------- /PyStrIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyStrIterator.cpp -------------------------------------------------------------------------------- /PyStrIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyStrIterator.h -------------------------------------------------------------------------------- /PyToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyToken.cpp -------------------------------------------------------------------------------- /PyToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyToken.h -------------------------------------------------------------------------------- /PyTuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyTuple.cpp -------------------------------------------------------------------------------- /PyTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyTuple.h -------------------------------------------------------------------------------- /PyTupleIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyTupleIterator.cpp -------------------------------------------------------------------------------- /PyTupleIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyTupleIterator.h -------------------------------------------------------------------------------- /PyType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyType.cpp -------------------------------------------------------------------------------- /PyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyType.h -------------------------------------------------------------------------------- /PyUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyUtil.cpp -------------------------------------------------------------------------------- /PyUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/PyUtil.h -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/README -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/autom4te.cache/output.0 -------------------------------------------------------------------------------- /autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/autom4te.cache/output.1 -------------------------------------------------------------------------------- /autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/autom4te.cache/requests -------------------------------------------------------------------------------- /autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/config.log -------------------------------------------------------------------------------- /config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/config.status -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/depcomp -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/install-sh -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/main.cpp -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/missing -------------------------------------------------------------------------------- /rebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/rebuild -------------------------------------------------------------------------------- /tests/__pycache__/disassembler.cpython-32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/__pycache__/disassembler.cpython-32.pyc -------------------------------------------------------------------------------- /tests/addtwo.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/addtwo.casm -------------------------------------------------------------------------------- /tests/addtwo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/addtwo.py -------------------------------------------------------------------------------- /tests/addtwoints.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/addtwoints.casm -------------------------------------------------------------------------------- /tests/dicttest.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/dicttest.casm -------------------------------------------------------------------------------- /tests/dicttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/dicttest.py -------------------------------------------------------------------------------- /tests/disassembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/disassembler.py -------------------------------------------------------------------------------- /tests/except.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/except.casm -------------------------------------------------------------------------------- /tests/except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/except.py -------------------------------------------------------------------------------- /tests/exception.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/exception.casm -------------------------------------------------------------------------------- /tests/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/exception.py -------------------------------------------------------------------------------- /tests/fact.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/fact.casm -------------------------------------------------------------------------------- /tests/fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/fact.py -------------------------------------------------------------------------------- /tests/factorial.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/factorial.casm -------------------------------------------------------------------------------- /tests/factorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/factorial.py -------------------------------------------------------------------------------- /tests/fib.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/fib.casm -------------------------------------------------------------------------------- /tests/fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/fib.py -------------------------------------------------------------------------------- /tests/ifthen.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/ifthen.casm -------------------------------------------------------------------------------- /tests/ifthen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/ifthen.py -------------------------------------------------------------------------------- /tests/ifthenelse.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/ifthenelse.casm -------------------------------------------------------------------------------- /tests/ifthenelse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/ifthenelse.py -------------------------------------------------------------------------------- /tests/ifthenelseexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/ifthenelseexp.py -------------------------------------------------------------------------------- /tests/inputoutput.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/inputoutput.casm -------------------------------------------------------------------------------- /tests/inputoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/inputoutput.py -------------------------------------------------------------------------------- /tests/iotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/iotest.py -------------------------------------------------------------------------------- /tests/iterators.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/iterators.casm -------------------------------------------------------------------------------- /tests/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/iterators.py -------------------------------------------------------------------------------- /tests/listconstant.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/listconstant.casm -------------------------------------------------------------------------------- /tests/listconstant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/listconstant.py -------------------------------------------------------------------------------- /tests/listiter.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/listiter.casm -------------------------------------------------------------------------------- /tests/listiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/listiter.py -------------------------------------------------------------------------------- /tests/nested.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/nested.casm -------------------------------------------------------------------------------- /tests/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/nested.py -------------------------------------------------------------------------------- /tests/nested2.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/nested2.casm -------------------------------------------------------------------------------- /tests/nestedfun.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/nestedfun.casm -------------------------------------------------------------------------------- /tests/nestedfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/nestedfun.py -------------------------------------------------------------------------------- /tests/nestedfun2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/nestedfun2.py -------------------------------------------------------------------------------- /tests/print5.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/print5.casm -------------------------------------------------------------------------------- /tests/print5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/print5.py -------------------------------------------------------------------------------- /tests/printevens.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/printevens.casm -------------------------------------------------------------------------------- /tests/printevenstryexcept.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/printevenstryexcept.casm -------------------------------------------------------------------------------- /tests/printtype.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/printtype.casm -------------------------------------------------------------------------------- /tests/printtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/printtype.py -------------------------------------------------------------------------------- /tests/raise.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/raise.casm -------------------------------------------------------------------------------- /tests/raise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/raise.py -------------------------------------------------------------------------------- /tests/raiseexcept.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/raiseexcept.casm -------------------------------------------------------------------------------- /tests/raiseexcept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/raiseexcept.py -------------------------------------------------------------------------------- /tests/raisereduced.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/raisereduced.casm -------------------------------------------------------------------------------- /tests/rangeiter.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/rangeiter.casm -------------------------------------------------------------------------------- /tests/rangeiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/rangeiter.py -------------------------------------------------------------------------------- /tests/rangeitertype.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/rangeitertype.casm -------------------------------------------------------------------------------- /tests/rangeitertype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/rangeitertype.py -------------------------------------------------------------------------------- /tests/rase2.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/rase2.casm -------------------------------------------------------------------------------- /tests/reverse.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/reverse.casm -------------------------------------------------------------------------------- /tests/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/reverse.py -------------------------------------------------------------------------------- /tests/split.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/split.casm -------------------------------------------------------------------------------- /tests/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/split.py -------------------------------------------------------------------------------- /tests/striter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/striter.py -------------------------------------------------------------------------------- /tests/sumFirstN.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/sumFirstN.casm -------------------------------------------------------------------------------- /tests/sumFirstN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/sumFirstN.py -------------------------------------------------------------------------------- /tests/sumFirstNRange.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/sumFirstNRange.casm -------------------------------------------------------------------------------- /tests/sumFirstNRec.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/sumFirstNRec.casm -------------------------------------------------------------------------------- /tests/sumFirstNRec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/sumFirstNRec.py -------------------------------------------------------------------------------- /tests/test.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test.casm -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/test0.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test0.casm -------------------------------------------------------------------------------- /tests/test0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test0.py -------------------------------------------------------------------------------- /tests/test1.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test1.casm -------------------------------------------------------------------------------- /tests/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test1.py -------------------------------------------------------------------------------- /tests/test11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test11.py -------------------------------------------------------------------------------- /tests/test13.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test13.casm -------------------------------------------------------------------------------- /tests/test13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test13.py -------------------------------------------------------------------------------- /tests/test14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test14.py -------------------------------------------------------------------------------- /tests/test16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test16.py -------------------------------------------------------------------------------- /tests/test17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test17.py -------------------------------------------------------------------------------- /tests/test18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test18.py -------------------------------------------------------------------------------- /tests/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test2.py -------------------------------------------------------------------------------- /tests/test22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test22.py -------------------------------------------------------------------------------- /tests/test26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test26.py -------------------------------------------------------------------------------- /tests/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test3.py -------------------------------------------------------------------------------- /tests/test4.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test4.casm -------------------------------------------------------------------------------- /tests/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test4.py -------------------------------------------------------------------------------- /tests/test40.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test40.casm -------------------------------------------------------------------------------- /tests/test40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test40.py -------------------------------------------------------------------------------- /tests/test41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test41.py -------------------------------------------------------------------------------- /tests/test5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test5.py -------------------------------------------------------------------------------- /tests/test8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test8.py -------------------------------------------------------------------------------- /tests/test9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/test9.py -------------------------------------------------------------------------------- /tests/testCoCo1.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/testCoCo1.casm -------------------------------------------------------------------------------- /tests/testCoCo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/testCoCo1.py -------------------------------------------------------------------------------- /tests/testcall.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/testcall.casm -------------------------------------------------------------------------------- /tests/testcall2.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/testcall2.casm -------------------------------------------------------------------------------- /tests/testit.py: -------------------------------------------------------------------------------- 1 | 5 / 0 2 | -------------------------------------------------------------------------------- /tests/testsplit.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/testsplit.casm -------------------------------------------------------------------------------- /tests/testsplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/testsplit.py -------------------------------------------------------------------------------- /tests/tokens.casm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/tokens.casm -------------------------------------------------------------------------------- /tests/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/tokens.py -------------------------------------------------------------------------------- /tests/while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentdlee/CoCo/HEAD/tests/while.py --------------------------------------------------------------------------------