ack/lang/b/distr/examples/4_goto.b

8 lines
80 B
Brainfuck
Raw Normal View History

2016-11-27 10:37:25 +00:00
main() {
auto c;
read:
c= getchar();
putchar(c);
if(c != '*n') goto read;
}