A literal of the form "v1.20.300.4000" is parsed as a string composed of characters with the specified ordinals. This form, known as v-strings, provides an alternative, more readable way to construct strings, rather than use the somewhat less readable interpolation form "\x{1}\x{14}\x{12c}\x{fa0}". This is useful for representing Unicode strings, and for comparing version "numbers" using the string compari- son operators, "cmp", "gt", "lt" etc. If there are two or more dot
Golf anyone? (Score:1)
perl -e 'print chr while($_=shift);' 78 111 119 32 72 105 114 105 110 103A modest 73 for starters
Re:Golf anyone? (Score:2)
perl -e 'print chr for(qw(78 111 119 32 72 105 114 105 110 103))'Re:Golf anyone? (Score:1)
perl -e 'print chr for qw(78 111 119 32 72 105 114 105 110 103)'Re:Golf anyone? (Score:2)
Hooray for laziness.
--
xoa
Re:Golf anyone? (Score:2)
--
xoa
Re:Golf anyone? (Score:1)
perl -e 'print chr for @ARGV' 78 111 119 32 72 105 114 105 110 103Re:Golf anyone? (Score:1)
Re:Golf anyone? (Score:2)
Re:Golf anyone? (Score:1)
Yes, but... (Score:2)
zero keystrokes (Score:2)