|
|
|
|
|
by elektronjunge
4207 days ago
|
|
A lot of the standard lib constructs behave completely differently in different contexts. Often subtly. For instance, @globvals = glob("*"); # returns all matches to @globvals
$glob1 = glob("*"); # returns the first match and stores it in $glob1
$glob2 = glob("*.c"); # returns the second match of "*" and stores it in $glob2
|
|