Question: Please write this in Racket programming language without using for-loops 8. Write a function called lst-with-cons that accepts no parameters. The function should use the

Please write this in Racket programming language without using for-loops
8. Write a function called lst-with-cons that accepts no parameters. The function should use the cons function (and only the cons function) to construct the list as shown in the image below. When using the cons function, you may only pass a single number as a parameter or an empty list '() . Note that the cons cell pointing to the numbers 1 and 2 is a pair. 6 3 1 2 4 5 > (1st-with-cons) '(((1, 2)) (3 (4.5)) 6) 8. Write a function called lst-with-cons that accepts no parameters. The function should use the cons function (and only the cons function) to construct the list as shown in the image below. When using the cons function, you may only pass a single number as a parameter or an empty list '() . Note that the cons cell pointing to the numbers 1 and 2 is a pair. 6 3 1 2 4 5 > (1st-with-cons) '(((1, 2)) (3 (4.5)) 6)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
