Write Racket expressions that do the following:
1. Defines a function printValue that takes a list consisting ofsymbol, price and shares as arguments and prints out the stocksymbol and the value of price x shares
2. Binds the list (“AAPL”, 100, 5) to the variable appleStock
3. Calls the function printValue with the variable appleStock
Solution