ack/lang/b/distr/examples/2_ext.b

10 lines
112 B
Brainfuck
Raw Normal View History

2016-11-27 10:37:25 +00:00
main() {
extrn a, b, c;
putchar(a); putchar(b); putchar(c); putchar('!*n');
}
a 'hell';
b 'o, w';
c 'orld';