>  2002/09/29 (日) 23:23:23        [mirai]
> > Brainfuckの素晴らしさは異常
> +-<>.,だったか?

THE LANGUAGE
============

The language 'brainfuck' knows the following commands:

 Cmd  Effect                                 Equivalent in C
 ---  ------                                 ---------------
 +    Increases element under pointer        array[p]++;
 -    Decrases element under pointer         array[p]--;
 >    Increases pointer                      p++;
 <    Decreases pointer                      p--;
 [    Starts loop, counter under pointer     while(array[p]) {
 ]    Indicates end of loop                  }
 .    Outputs ASCII code under pointer       putchar(array[p]);
 ,    Reads char and stores ASCII under ptr  array[p]=getchar();

+-><[].,だな
わずか8個の命令しかないがturing completeだ

参考:2002/09/29(日)23時15分02秒