{-# OPTIONS -Wall #-} -- | Paraiso main module. -- This module will export a starter-kit modules and functions in the future, -- but is useless right now. -- The building-blocks of Paraiso programs are in -- the module 'Language.Paraiso.OM.Builder.Builder'. -- -- A series of intoduction is being written in Japanese -- -- and English -- . -- -- Also refer to the wiki -- and the paper -- for more detail. module Language.Paraiso (run) where -- | Generate Wonderful Program run :: () -> String run _ = "#include \nint main () {cout << \"hello\" << endl;}\n"