Advertisement
flomath

chris

May 1st, 2015
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. type Position = Int
  2. type Move = (Position,Position)
  3. type Towers = ([Int],[Int],[Int])
  4.  
  5. move :: ([Move],Towers) -> ([Move],Towers)
  6. move (ls,t) = (tail ls,((t1,t2,t3)))
  7.   where
  8.               t1 = [1,2,3]
  9.               t2 = []
  10.               t3 = []
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement