Skip to content

Instantly share code, notes, and snippets.

@mconnell
Created December 3, 2011 13:14
Show Gist options
  • Save mconnell/1427095 to your computer and use it in GitHub Desktop.
Save mconnell/1427095 to your computer and use it in GitHub Desktop.
class Matrix
def []=(i, j, x)
@rows[i][j] = x
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment