You are on page 1of 3

CL-USER 1 +93 93 CL-USER 2 > + 9 3 12 CL-USER 3 > * 5 3 15 CL-USER 4 >* 9 9 CL-USER 5 > (+3 1) Error: Illegal argument in functor

position: 3 in (3 1). 1 (continue) Evaluate 3 and ignore the rest. 2 (abort) Return to level 0. 3 Return to top loop level 0. Type :b for backtrace, :c <option number> to proceed, or :? for other options CL-USER 6 : 1 > * 9 (+ 3 1) 36 CL-USER 7 : 1 > + (* 6 (+ 2 1)) (/ 3 (- 2 1)) 21 CL-USER 8 : 1 > setq A 5 5 CL-USER 9 : 1 > A 5 CL-USER 10 : 1 > setq B 6 6 CL-USER 11 : 1 > setq C (+ A B) 11 CL-USER 12 : 1 > C 11 Error while reading: Unmatched right parenthesis. Error while reading: Unmatched right parenthesis. CL-USER 13 : 1 > +(/ (* (- 14 7)(- 4 1 )) ((- 3 2)(- 2 1))) (-9 4) Error: Illegal argument in functor position: (- 3 2) in ((- 3 2) (- 2 1)). 1 (continue) Evaluate (- 3 2) and ignore the rest. 2 (abort) Return to level 1. 3 Return to debug level 1. 4 Evaluate 3 and ignore the rest. 5 Return to level 0. 6 Return to top loop level 0. Type :b for backtrace, :c <option number> to proceed, or :? for other options CL-USER 14 : 2 > setq A (- 9 4) 5

CL-USER 15 : 2 > setq B (*(- 14 7) (- 4 1)) 21 CL-USER 16 : 2 > setq C (*(- 3 2) (- 2 1)) 1 CL-USER 17 : 2 > setq D (+ A (/ B C)) 26 Error while reading: Unmatched right parenthesis. CL-USER 18 : 2 > (list 'ana 'maria 'pedro) (ANA MARIA PEDRO) CL-USER 19 : 2 > (setq L1 (list 'ana 'pedro)) (ANA PEDRO) CL-USER 20 : 2 > (firts L1) Error: Undefined operator FIRTS in form (FIRTS L1). 1 (continue) Try invoking FIRTS again. 2 Return some values from the form (FIRTS L1). 3 Try invoking something other than FIRTS with the same arguments. 4 Set the symbol-function of FIRTS to another function. 5 Set the macro-function of FIRTS to another function. 6 (abort) Return to level 2. 7 Return to debug level 2. 8 Evaluate (- 3 2) and ignore the rest. 9 Return to level 1. 10 Return to debug level 1. 11 Evaluate 3 and ignore the rest. 12 Return to level 0. 13 Return to top loop level 0. Type :b for backtrace, :c <option number> to proceed, or :? for other options CL-USER 21 : 3 > (first L1) ANA CL-USER 22 : 3 > (rest L1) (PEDRO) CL-USER 23 : 3 > (first ((a b) (3 4))) Error: Illegal argument in functor position: (A B) in ((A B) (3 4)). 1 (continue) Evaluate (A B) and ignore the rest. 2 (abort) Return to level 3. 3 Return to debug level 3. 4 Return to level 2. 5 Return to debug level 2. 6 Evaluate (- 3 2) and ignore the rest. 7 Return to level 1. 8 Return to debug level 1. 9 Evaluate 3 and ignore the rest. 10 Return to level 0. 11 Return to top loop level 0. Type :b for backtrace, :c <option number> to proceed, or :? for other options Error while reading: Unmatched right parenthesis.

CL-USER 24 : 4 > list L1 (ana maria pedro)

You might also like