Answers for "how to make a list in scheme"

1

how to make a list in scheme

(cons 4 (cons 10 ()))
;(4 10)
Posted by: Guest on November-18-2020
0

how to make a list in scheme

(cons 4 10)
#(4, 10)
#normal list

(cons 4 (cons 10 (cons 9)))
#linked list
(4, 10, 9)
Posted by: Guest on November-04-2020

Code answers related to "Scheme"

Browse Popular Code Answers by Language