Files
pdp7-unix/src/other/hello.b
T
rswier 28a98360a4 Successful first run of B interpreter!
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
2016-03-07 05:57:30 -05:00

10 lines
117 B
Brainfuck

main $(
write('He');
write('ll');
write('o,');
write(' W');
write('or');
write('ld');
write('!*n');
$)