Skip to content

Instantly share code, notes, and snippets.

@freiksenet
Created October 6, 2010 07:47
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 freiksenet/303137c4b81e6c2230b3 to your computer and use it in GitHub Desktop.
Save freiksenet/303137c4b81e6c2230b3 to your computer and use it in GitHub Desktop.
Matrix : Set -> ℕ -> ℕ -> Set
Matrix A n m = Vec (Vec A n) m
test : ∀ {A n m} → Matrix A n m → Matrix A n m
test xss = (head xss) ∷ (tail xss)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment