http://qs1969.pair.com?node_id=11121647

perl -e 'use Time::HiRes qw(usleep); foreach $i (1..145) { print join("", (" " x 72)) . "crickets\n"; usleep 550000 }'

Replies are listed 'Best First'.
Re: Perl Saroyan
by hippo (Bishop) on Sep 12, 2020 at 10:48 UTC

    $i is unused and the join does nothing.

    perl -e 'use Time::HiRes qw(usleep); for (1..145) { print " " x 72 . " +crickets\n"; usleep 550000 }'

    There, now that's much more relaxing. ;-)


    🦛