Is is possible to turn off I/O buffering in a PicoLisp program?
e.g In Perl one can do something like this...

#!/usr/bin/perl
$| = 1; # Turn off I/O buffering
while (<STDIN>) {
s/-/_/g; # Replace dashes with underscores
print $_;
}

I'd like to do something similar with a PicoLisp program.

Best Regards,
/Lindsay

Reply via email to