Post History
Turing Machine.io, 202 bytes 0 1 101 3 1 2 0 0 2 108 3 1 3 0 0 3 108 3 1 4 0 0 4 111 3 1 5 0 0 5 44 3 1 6 0 0 6 32 3 1 7 0 0 7 87 3 1 8 0 0 8 111 3 1 9 0 0 9 114 3 1 a 0 0 a 108 3 1 b 0 ...
Answer
#1: Initial revision
# [Turing Machine.io](https://github.com/a-github-account/Turing-Machine.io), 202 bytes ```0 0 72 3 1 1 0 0 1 101 3 1 2 0 0 2 108 3 1 3 0 0 3 108 3 1 4 0 0 4 111 3 1 5 0 0 5 44 3 1 6 0 0 6 32 3 1 7 0 0 7 87 3 1 8 0 0 8 111 3 1 9 0 0 9 114 3 1 a 0 0 a 108 3 1 b 0 0 b 100 3 1 c 0 0 c 33 3 1 0 1 ``` Basically just keeps replacing the current cell value with the ASCII value of whatever character in "Hello, World!" its printing and moving on. I might add a more detailed explanation later (or maybe someone else can, if they feel like it).