in reply to perl grep
is equivalent to%hash = (this => 'that', now => 'then');
You can see how it differs from the comma in the quoting of the keys being optional in most cases. But for most normal uses, its just a funny looking comma.%hash = ('this', 'that', 'now', 'then');
- Tom
|
|---|