Hi,
     This is a function that returns true if divisible by 2. But it keeps telling me parse error on input | . What is wrong here.
is_even n   | mod n 2 == 0
                 | True
 
Not sure if I need another statement for false
 
John