Pontifications

#using ranges. The end position is included with two periods but not with three
array_four[0..1]              # => ["a", "b"]
array_four[0...1]             # => ["a"]

Leave a comment on github