Guest User

Untitled

a guest
Dec 16th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. multi4 = [["1 0 0 0"],["0 1 0 0"],["0 0 1 0"],["0 0 0 1"]]
  2.  
  3. for a in multi4[0]
  4. puts a
  5. end
  6. for b in multi4[1]
  7. puts b
  8. end
  9.  
  10. for c in multi4[2]
  11. puts c
  12. end
  13.  
  14. for d in multi4[3]
  15. puts d
  16. end
  17.  
  18. puts " "
  19.  
  20. multi4 = [["1 0 0 0"],["1 1 0 0"],["0 1 1 0"],["0 0 1 1"]]
  21.  
  22. for a in multi4[0]
  23. puts a
  24. end
  25. for b in multi4[1]
  26. puts b
  27. end
  28.  
  29. for c in multi4[2]
  30. puts c
  31. end
  32.  
  33. for d in multi4[3]
  34. puts d
  35. end
Add Comment
Please, Sign In to add comment