growl/examples/cat.grr
2026-01-23 13:53:20 -03:00

11 lines
171 B
Text

#load("std.grr")
def while {
swap dup bury >r >r
if: call dup
[r> dup >r call r> r> swap while]
[drop r> drop r> drop];
}
while: [stdin fgetline]
[print];