ยค fudlogue

The combinator that connects the main fudget to the Haskell I/O system

Types

fudlogue :: F a b -> IO ()

Synopsis

fudlogue topfudget

Description

fudlogue is used on the top level of a fudget program, to turn the top level fudget into a Haskell IO monad.

Arguments

topfudget :: F a b
The top level fudget of the program.

Example

 main = fudlogue (shellF "Quit" quitButtonF)

See Also

shellF, fudlogue'.