(use srfi-13) (define (change c) ( if (or (equal? c #\I) (equal? c #\l)) #\1 (if (or (equal? c #\O) (equal? c #\o)) #\0 c) ) ) (let ((s (read-line))) (print (string-map change s)))