packages feed

fay-0.9.2.0: tests/patternMatchFail.hs

{-# LANGUAGE NoImplicitPrelude #-}

module PatternMatchFail where

import           Language.Fay.FFI
import           Language.Fay.Prelude

main = print ((\a 'a' -> "OK.") 0 'b')

print :: String -> Fay ()
print = ffi "console.log(%1)"