![]() |
|
The stupid question is the question not asked | |
PerlMonks |
Re^2: Determining if a rational number terminatesby tobyink (Canon) |
on Nov 30, 2012 at 10:07 UTC ( [id://1006447]=note: print w/replies, xml ) | Need Help?? |
This produces a deprecation warning in recent versions of Perl thanks to ?/?. You can use '/' or "/" instead to avoid the deprecation warning. Perl is smart enough to know you meant a regexp rather than a string if it follows =~. bigrat is in core, so I don't consider it cheating. Now, if you wrote chkrat.pm, and uploaded it to CPAN specifically to help your golf score, that would be cheating. However, I'm disappointed by the lack of a line break. Here's my reinterpretation of your implementation. I've added a line break at the cost of three keystrokes, but managed to save six keystrokes elsewhere...
These are also quite cute, though very slightly longer...
perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'
In Section
Obfuscated Code
|
|