Help for this page
while (<STDIN>) { ... } while (readline(STDIN)) { ...} ... while (<*.c>) { ... } are equivalent to: my @list = glob("*.c"); for (@list) { ... };