Skip to content

Instantly share code, notes, and snippets.

@superscott
Created June 21, 2013 00:43
Show Gist options
  • Save superscott/5828036 to your computer and use it in GitHub Desktop.
Save superscott/5828036 to your computer and use it in GitHub Desktop.
<3
[4] pry(main)> asd = ('A'..'Z')
=> "A".."Z"
[5] pry(main)> asd.each do |p|
[5] pry(main)* puts p
[5] pry(main)* end
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
=> "A".."Z"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment