marketplace-2014/list-utils.rkt

8 lines
123 B
Racket
Raw Normal View History

2014-08-06 19:16:50 +00:00
#lang racket/base
2013-03-29 03:00:29 +00:00
(provide list-max)
2014-08-06 19:16:50 +00:00
;; list-max : (Listof Integer) -> Integer
2013-03-29 03:00:29 +00:00
(define (list-max xs)
(foldr max 0 xs))