Skip to content

Instantly share code, notes, and snippets.

@gbgdev
Created September 29, 2015 00:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbgdev/2d2c06968b503581008c to your computer and use it in GitHub Desktop.
Save gbgdev/2d2c06968b503581008c to your computer and use it in GitHub Desktop.
@matrix = Matrix[
[2, 1, 1, 1, 1 ,8],
[1, 2, 1, 1, 1, 9],
[1, 1, 2, 1, 1, 2],
[1, 1, 1, 2, 1, 4],
[1, 1, 1, 1, 2, 5],
[1, 1, 1, 1, 2, 5]
]
for row in @matrix
puts row
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment