Help for this page

Select Code to Download


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