in reply to Re: bareword hash keys
in thread bareword hash keys

$ perl use strict; my %var; $var{test.dot} = "a"; ^D Bareword "test" not allowed while "strict subs" in use at - line 3. Bareword "dot" not allowed while "strict subs" in use at - line 3. Execution of - aborted due to compilation errors.
That's why you should use strict.

Makeshifts last the longest.