{-# OPTIONS -Wall #-} -- | Paraiso main module. -- This module will export a starter-kit modules and functions in the future, -- but is useless right now. module Language.Paraiso (run) where -- | Generate Wonderful Program run :: () -> String run _ = "#include \nint main () {cout << \"hello\" << endl;}\n"