packages feed

fay-0.2.0.0: tests/19.hs

data Person = Person String String Int

main = print (foo (Person "Chris" "Done" 14))

foo (Person "Chris" "Done" 13) = "Foo!"
foo (Person "Chris" "Barf" 14) = "Bar!"
foo (Person "Chris" "Done" 14) = "Hello!"
foo _ = "World!"

print :: Foreign a => a -> Fay ()
print = foreignFay "console.log" FayNone