从终端读取

作者:Scott Penrose

源代码:01-read-from-terminal.pl

#!/usr/bin/env perl6

use v6;

for $*IN.get {
    say "I read the line: $_";
}