Skip to content

Instantly share code, notes, and snippets.

@samth
Created August 21, 2014 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samth/8fbc12877e2639c5f94c to your computer and use it in GitHub Desktop.
Save samth/8fbc12877e2639c5f94c to your computer and use it in GitHub Desktop.
#lang racket/base
(define (average l)
(define len (length l))
(define sum (apply + l))
(display (/ len l)))
(average (list 1 2 3 400 500 600))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment