Please help me with using the DrScheme built-in function "filter".
"create a function "hello" that consumes a number 'Max', and a list of numbers 'L', produce a list of numbers in 'L' that are smaller than 'Max'."
edit Taken from the comments for formatting
this is what i have so far
(define (smaller? n Max)
(cond
[(> Max n) n]
[else empty]))
(define (hello Max L)
(filter smaller? L))
I don't know how to implement Max into the function hello.