need the dufun ==> (poke 3 \'hello) to print (one two hello three four) ==> (pee
ID: 3604122 • Letter: N
Question
need the dufun ==> (poke 3 'hello) to print (one two hello three four) ==> (peek 3) hello ==> (purge 3) (one two three four) ==> (pokeload) Enter new items and then type END: five six seven end (one two three four five six seven) ==> (present) one two three four five six seven () Try all of your functions using the lisp interpreter. for example (defun multcrazy (mylist multi) (cond ((null mylist) '()) ((atom mylist) (* mylist multi)) (t (cons (multcrazy (car mylist) multi) (multcrazy (cdr mylist) multi) ) ) ) )