├── LICENSE ├── README.md ├── examples ├── 3adder │ ├── 3-digit-adder.txt │ └── const.txt ├── 3singledigitsort │ ├── 0.txt │ ├── 1.txt │ ├── 2.txt │ ├── 3.txt │ ├── 3_single_digit_sort.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ ├── 9.txt │ └── sorted.txt ├── helloworld.txt ├── peanutallergy │ └── code.txt └── tmcompiler │ ├── How_To_Use.md │ ├── even_checker_tm.txt │ ├── gen_hofstadter_tm.py │ ├── hofstadter.py │ ├── hofstadter_tm.txt │ └── my_primality_tm.txt └── hofstadter.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/README.md -------------------------------------------------------------------------------- /examples/3adder/3-digit-adder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/examples/3adder/3-digit-adder.txt -------------------------------------------------------------------------------- /examples/3adder/const.txt: -------------------------------------------------------------------------------- 1 | 011123456789xyz 2 | xxx -------------------------------------------------------------------------------- /examples/3singledigitsort/0.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /examples/3singledigitsort/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /examples/3singledigitsort/2.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /examples/3singledigitsort/3.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /examples/3singledigitsort/3_single_digit_sort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/examples/3singledigitsort/3_single_digit_sort.txt -------------------------------------------------------------------------------- /examples/3singledigitsort/4.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /examples/3singledigitsort/5.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /examples/3singledigitsort/6.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /examples/3singledigitsort/7.txt: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /examples/3singledigitsort/8.txt: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /examples/3singledigitsort/9.txt: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /examples/3singledigitsort/sorted.txt: -------------------------------------------------------------------------------- 1 | 2 | Sorted input: -------------------------------------------------------------------------------- /examples/helloworld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/examples/helloworld.txt -------------------------------------------------------------------------------- /examples/peanutallergy/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/examples/peanutallergy/code.txt -------------------------------------------------------------------------------- /examples/tmcompiler/How_To_Use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/examples/tmcompiler/How_To_Use.md -------------------------------------------------------------------------------- /examples/tmcompiler/even_checker_tm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/examples/tmcompiler/even_checker_tm.txt -------------------------------------------------------------------------------- /examples/tmcompiler/gen_hofstadter_tm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/examples/tmcompiler/gen_hofstadter_tm.py -------------------------------------------------------------------------------- /examples/tmcompiler/hofstadter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/examples/tmcompiler/hofstadter.py -------------------------------------------------------------------------------- /examples/tmcompiler/hofstadter_tm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/examples/tmcompiler/hofstadter_tm.txt -------------------------------------------------------------------------------- /examples/tmcompiler/my_primality_tm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/examples/tmcompiler/my_primality_tm.txt -------------------------------------------------------------------------------- /hofstadter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AZHenley/hofstadter/HEAD/hofstadter.py --------------------------------------------------------------------------------