???
???

Comprueba si hay errores en este problema de palabras: check-total
Direcciones: It is customary to tip 20% on a bill at a restaurant. Write a function that takes the total cost of the food and returns the new total including tip.
Declaración de contrato y propósito
Todo contrato tiene 3 partes...
;
check-total:numbernumber
;
Returns the total of a check with 20% of the cost added
Ejemplos
Escribe algunos ejemplos, luego circula y marca los cambios...
(Ejemplo (
(total 20))(20 (+ (0.2 * 20) 20))
(Ejemplo (
(total 56.67))(56.67 (+ (0.2 * 56.67) 56.67))
Definición
Escribe la definición, nombres de variables a todos sus valores de entrada...
(define (
check-totalfood-total)(* (+ 0.2 food-total) food-total))