Skip to main content
Commonmark migration
Source Link

#05AB1E, 6 5 bytes

05AB1E, 6 5 bytes

Thanks to Downgoat for saving 1 byte. Code:

ADv=À 

Explanation:

A # Push the lowercase alphabet. D # Duplicate it. v # For each in the alphabet... = # Print without popping and with a newline. À # Rotate 1 to the left. 

Uses the CP-1252 encoding. Try it online!.

#05AB1E, 6 5 bytes

Thanks to Downgoat for saving 1 byte. Code:

ADv=À 

Explanation:

A # Push the lowercase alphabet. D # Duplicate it. v # For each in the alphabet... = # Print without popping and with a newline. À # Rotate 1 to the left. 

Uses the CP-1252 encoding. Try it online!.

05AB1E, 6 5 bytes

Thanks to Downgoat for saving 1 byte. Code:

ADv=À 

Explanation:

A # Push the lowercase alphabet. D # Duplicate it. v # For each in the alphabet... = # Print without popping and with a newline. À # Rotate 1 to the left. 

Uses the CP-1252 encoding. Try it online!.

added 43 characters in body
Source Link
Adnan
  • 44.7k
  • 6
  • 83
  • 248

#05AB1E, 66 5 bytes

Thanks to Downgoat for saving 1 byte. Code:

AuDv=ÀADv=À 

Explanation:

AuA # Push the uppercaselowercase alphabet.   D # Duplicate it.   v # For each in the alphabet...   = # Print without popping and with a newline.   À # Rotate 1 to the left. 

Uses the CP-1252 encoding. Try it online!Try it online!.

#05AB1E, 6 bytes

Code:

AuDv=À 

Explanation:

Au # Push the uppercase alphabet.   D # Duplicate it.   v # For each in the alphabet...   = # Print without popping and with a newline.   À # Rotate 1 to the left. 

Uses the CP-1252 encoding. Try it online!.

#05AB1E, 6 5 bytes

Thanks to Downgoat for saving 1 byte. Code:

ADv=À 

Explanation:

A # Push the lowercase alphabet. D # Duplicate it. v # For each in the alphabet... = # Print without popping and with a newline. À # Rotate 1 to the left. 

Uses the CP-1252 encoding. Try it online!.

Source Link
Adnan
  • 44.7k
  • 6
  • 83
  • 248

#05AB1E, 6 bytes

Code:

AuDv=À 

Explanation:

Au # Push the uppercase alphabet. D # Duplicate it. v # For each in the alphabet... = # Print without popping and with a newline. À # Rotate 1 to the left. 

Uses the CP-1252 encoding. Try it online!.