Skip to content

Instantly share code, notes, and snippets.

@cosmo0920
Created November 24, 2012 22:39
Show Gist options
  • Save cosmo0920/4141690 to your computer and use it in GitHub Desktop.
Save cosmo0920/4141690 to your computer and use it in GitHub Desktop.
fay langを使ってRedirect
$ fay --no-ghc redirect.hs --html-wrapper
module HTML.Redirect where
import Language.Fay.FFI
import Language.Fay.Prelude
main :: Fay ()
main = redirect "http://www.bing.com/"
redirect :: String -> Fay ()
redirect = ffi "window.location = %1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment