in reply to Re^4: Optional quotes: to use or not to
in thread Optional quotes: to use or not to
->> 'say'#!/usr/bin/perl my %example; $example{foo} = say; print $example{foo}, "\n";
->> '1'#!/usr/bin/perl use 5.010; my %example; $example{foo} = say; print $example{foo}, "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Optional quotes: to use or not to
by hurricup (Pilgrim) on Jul 10, 2015 at 13:10 UTC |