aboutsummaryrefslogblamecommitdiff
path: root/main/cocl.icl
blob: 53dcbfa510b34d7143e10733d57d08a5a81758a1 (plain) (tree)
1
2
3
4
5
6
7

               
 
             
                                          






                                                                        
                                               







                                                                     
                                                                                                                                  


                                                                             
                                                                        
module cocl

import coclmain

import StdEnv
import frontend
import code from library "backend_library"

Start :: *World -> *World
Start world
	=	coclMain testArgs world
	where
		testArgs
			=	[
					// main module			
					"t.icl"
					// list all types
				,	"-lat"
					// generate readable abc code
				,	"-d"
					// redirect out
				,	"-RO", "messages.txt"	
					// redirect errors
				,	"-RE", "errors.txt"
					// paths
				,	"-P", testDir +++ ";" +++ clean20Dir +++ "StdEnv" +++ ";" +++ clean20Dir +++ "IOInterface"
				]
		testDir
			=	"e:\\Users\\Ronny\\Develop\\Clean Programs\\"
		clean20Dir
			=	"e:\\Users\\Ronny\\Develop\\Clean 2.0\\"