Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. type Tablero = (Posicion-> Maybe Pieza)
  2.  
  3. type Posicion = (Integer,Integer)
  4.  
  5. type Movimiento = (Posicion,Posicion)
  6.  
  7. data Pieza = Peon|Caballo|Alfil|Torre|Reina|Rey deriving (Eq,Show)
  8.  
  9. -- .................................................................... FIN ZONA DECLARACION DE TIPOS
  10. -- ...................... SHOW de Tablero
  11. instance Show Tablero where
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement