Please execute the following statements. Write down the return value for each statement and explain what each of the functions cons, append, and list ; Scheme interprets everything to the right of a...


Please execute the following statements. Write down the return value for each statement and explain what each of the functions cons, append, and list


 ; Scheme interprets everything to the right of a semicolon (;) as a comment. You should always start your file with comment lines that include your name, W#, and assignment title


(cons 3 '(1 2))


(cons '(1 5) '(2 3))


(list 3 '(1 2))


(list '(1 5) '(2 3))


(append '(1) '(2 3))


(append '(1 5) '(2 3))



(cons 'x '(1 2))


(list 1 2 3 '(4 5))


(cons '1 '2 '3 '(4 5))



Jun 07, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here