This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# print array in slices using each | |
a = (1..16).to_a | |
(0..3).each do |i| | |
p a[4*i..4*i+3] | |
end | |
# print array in slices using each_slice | |
a.each_slice(4) {|s| p s} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
out.txt |