; your code goes here
(defun board ()
  '((T 25 54 89 21 8 36 14 41 96) 
    (78 47 56 23 5 NIL 13 12 26 60)))
    
 (print (board))
 
;; Function that receives the board and returns the position (i j) where the "T" is. If "T" is not on the board, NIL should be returned. 
 (defun find-T-position (board)

 )
 
(print "position : " (find-T-position (board)))    
    
