Guest User

Untitled

a guest
Apr 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. irb(main):001:0> a = [[0, 1], [2, 3]]
  2. => [[0, 1], [2, 3]]
  3. irb(main):002:0> a[0][1]
  4. => 1
  5. irb(main):003:0> a[0][0]
  6. => 0
  7. irb(main):004:0> a = [["anything", {:else => "here"}], ["foo", "bar"]]
  8. => [["anything", {:else=>"here"}], ["foo", "bar"]]
  9. irb(main):005:0> a[0][1]
  10. => {:else=>"here"}
  11. irb(main):006:0> a[1][0]
  12. => "foo"
Add Comment
Please, Sign In to add comment