![]() |
|
Think about Loose Coupling | |
PerlMonks |
Re: Re: First JAPH - Spell perl in two hundred and eighty five thousand and seventy four easy stepsby blakem (Monsignor) |
on Jan 12, 2002 at 13:26 UTC ( [id://138247]=note: print w/replies, xml ) | Need Help?? |
From perlop:
print ++($foo = 'a0'); # prints 'a1' print ++($foo = 'Az'); # prints 'Ba' print ++($foo = 'zz'); # prints 'aaa' The auto-decrement operator is not magical. -Blake
In Section
Obfuscated Code
|
|