Help with Scheme program Write a program in Scheme that will
Help with Scheme program,:
Write a program in Scheme that will compute the average value on a list of numbers. You may use additional expressions to make your program easier to read and write. For example: (average \'(3 14 IS 9 62 64 37));Value: 204/7Solution
******2nd method******
> (define (call-average . ns)
(average ns))
> (call-average 3 14 15 9 62 64 37) ;;
