Today, we learned the functions of LISP and how to make our own functions using DEF or DEFUN.Make your own function.From Intermediate Contest 2 2017 - 20183. From Intermediate Contest 2 2015 - 20164. From Senior Contest 2013-2014
honestly it really doesn't matter as long as it makes sense.
9
45
176
(DEF HELLO (args) (CADAR args))
9
45
176
1. (DEF me (args) (CAR(args)))
2. 9
3. 45
4. 176
(DEF JEFF (args) (CDR(CAR(CDR args))))
9
45
176
(DEF FIRST (args) (CAR(CAR(CONS(CDR args)))))
9
45
176