#!/usr/bin/picolisp /usr/lib/picolisp/lib.l # slowcat - emulate a s l o w line printer # usage: slowcat [-DELAY] [files ...] (let Delay (ifn (lt0 (format (car (argv)))) 1 (opt) (- @)) (for F (argv) (for C (in F (till)) (prin C) (wait (* 5 Delay)) ) ) ) (bye)