Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Perl version' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Perl version
Authored by: hayne on Mar 04, '03 09:57:58PM
Here's how you could do it as a Perl one-liner:
perl -e 'print 0x3f, "\n"'

or

perl -e 'printf("%d\n", 0x3f)'


[ Reply to This | # ]
backslashes (sigh)
Authored by: hayne on Mar 04, '03 10:01:59PM

The last "n" in both version is supposed to be "\\n" - i.e. backslash-n.

It seems the Geeklog bug with backslashes is not yet fixed - sigh.



[ Reply to This | # ]