├── .gitignore ├── Makefile ├── README.md └── koan.c /.gitignore: -------------------------------------------------------------------------------- 1 | /testrunner 2 | /koan.o 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/PointerKoan/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/PointerKoan/HEAD/README.md -------------------------------------------------------------------------------- /koan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/PointerKoan/HEAD/koan.c --------------------------------------------------------------------------------