|
|
|
|
|
by elektronjunge
4207 days ago
|
|
Having implicit shared state dependent on the requested type is certainly not consistent. To a reasonably experienced perl programmer one would expect the following: @globs = glob("*") # all matches
$glob1 = glob("*") # the first match of "*"
$glob2 = glob("*.c") # the first match of "*.c"
|
|