Code Golf: Code Golf: Difference between revisions

Content added Content deleted
m (→‎{{header|Perl}}: Save one character)
Line 356: Line 356:
# 1 2 3 4 5
# 1 2 3 4 5
#12345678901234567890123456789012345678901234567890
#12345678901234567890123456789012345678901234567890
print map{chr(102^$_)}37,9,2,3,70,33,9,10,0 # 43 bytes</syntaxhighlight>
print chr($_^102)for 37,9,2,3,70,33,9,10,0 # 42 bytes</syntaxhighlight>


=={{header|Phix}}==
=={{header|Phix}}==