module Hello where import HJ.Prelude import HJ.FFI main :: JS () main = alert "Hello, World!" alert :: Foreign a => a -> JS () alert = foreignJS 1 "window.alert" ""