Skip to main content
Commonmark migration
Source Link

#Perl 5, 3 bytes

Perl 5, 3 bytes

y=> 

=> is the "fat comma," which quotes the bareword on the left. So this is equivalent to

"y", 

which does nothing.

Without the fat comma, y is the transliteration operator, which is invalid without three of the same character repeated later.

The fat comma alone is also invalid, as is = and > alone.

#Perl 5, 3 bytes

y=> 

=> is the "fat comma," which quotes the bareword on the left. So this is equivalent to

"y", 

which does nothing.

Without the fat comma, y is the transliteration operator, which is invalid without three of the same character repeated later.

The fat comma alone is also invalid, as is = and > alone.

Perl 5, 3 bytes

y=> 

=> is the "fat comma," which quotes the bareword on the left. So this is equivalent to

"y", 

which does nothing.

Without the fat comma, y is the transliteration operator, which is invalid without three of the same character repeated later.

The fat comma alone is also invalid, as is = and > alone.

Source Link
Chris
  • 2.1k
  • 13
  • 26

#Perl 5, 3 bytes

y=> 

=> is the "fat comma," which quotes the bareword on the left. So this is equivalent to

"y", 

which does nothing.

Without the fat comma, y is the transliteration operator, which is invalid without three of the same character repeated later.

The fat comma alone is also invalid, as is = and > alone.