diff options
Diffstat (limited to 'objectio/hello.icl')
-rw-r--r-- | objectio/hello.icl | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/objectio/hello.icl b/objectio/hello.icl deleted file mode 100644 index 1988c6a..0000000 --- a/objectio/hello.icl +++ /dev/null @@ -1,17 +0,0 @@ -module hello - -import StdEnv, StdIO - -Start :: *World -> *World -Start world = startIO NDI Void initialise [] world -where - initialise pst - # (error,pst) = openDialog Void hello pst - | error <> NoError = closeProcess pst - | otherwise = pst - - hello = Dialog "ObjectIO" controls [WindowClose (noLS closeProcess)] - controls = TextControl "Hello World!" [] :+: - TextControl "Text 2" [] :+: - ButtonControl "Button" [] - |