Using Scheme
In this assignment, you will be learning Scheme through the useof Dr. Racket. We would like to start with some basic concepts;trying to under prefix notation and the use procedure in Scheme.You will also implement nested procedures and recursiveprocedures.
Convert to Scheme and Run:
Using Dr. Racket & R5RS Scheme to compute the followingexpressions.
1) 3 + 5 – 7
2) 2 * ( 8 + 5 + 4 ) – 25
3) 10 – ( ( 3 * 5 ) + ( 2 + ( 0 * 5 ) ) )
4) 5 * ( 4 + ( ( ( 10 + 10 )
OR
OR