diff options
-rw-r--r-- | main/cocl.icl | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/main/cocl.icl b/main/cocl.icl index 7dd6ce6..c9d8037 100644 --- a/main/cocl.icl +++ b/main/cocl.icl @@ -10,13 +10,11 @@ import coclmain import frontend import StdDebug -// Start :: *World -> *World +Start :: *World -> *World Start world - # world = trace_n "hello from cocl!\n" world - # world - = coclMain testArgs world - = trace_n "bye from cocl!\n" world + = coclMain []/*testArgs*/ world where + /* testArgs = [ // main module @@ -79,3 +77,4 @@ Start world [ stdenvDir ] ) + */ |