I hand compiled hello.b into hello.s and assembled with the interpreter and runtime library: perl as7 --out a.out bl.s hello.s bi.s
10 lines
117 B
Brainfuck
10 lines
117 B
Brainfuck
main $(
|
|
write('He');
|
|
write('ll');
|
|
write('o,');
|
|
write(' W');
|
|
write('or');
|
|
write('ld');
|
|
write('!*n');
|
|
$)
|