diff options
| author | Mart Lubbers | 2015-04-28 21:18:32 +0200 | 
|---|---|---|
| committer | Mart Lubbers | 2015-04-28 21:18:32 +0200 | 
| commit | eb801d874c5101539c27703ec3854ad98a099d3f (patch) | |
| tree | 3b7bbb704c52ab1cb010c55ff0b4d22b97175e52 /fp2/week3 | |
| parent | week3 jow (diff) | |
initial start with week3, wine yay
Diffstat (limited to 'fp2/week3')
| -rw-r--r-- | fp2/week3/mart/GetallenRaden.icl | 29 | ||||
| -rw-r--r-- | fp2/week3/mart/GetallenRaden.prj | 1594 | ||||
| -rw-r--r-- | fp2/week3/mart/GetallenRaden.prp | 543 | ||||
| -rw-r--r-- | fp2/week3/mart/fib.dyn | 1 | 
4 files changed, 2165 insertions, 2 deletions
| diff --git a/fp2/week3/mart/GetallenRaden.icl b/fp2/week3/mart/GetallenRaden.icl index f03750a..37584fb 100644 --- a/fp2/week3/mart/GetallenRaden.icl +++ b/fp2/week3/mart/GetallenRaden.icl @@ -8,6 +8,31 @@ import StdEnv  import StdDynamic, StdDynamicFileIO		// nodig voor dynamics en dynamics in files
  import StdFileSelect					// platform file-selector dialoog
 -Start :: *World -> *World
 +// Generation program
 +//fib :: [Int]
 +//fib = [fib` i \\ i <- [0..]]
 +//	where 
 +//		fib` 0 = 0
 +//		fib` 1 = 1
 +//		fib` n = fib` (n-1) + fib` (n-2)
 +//
 +//Start :: *World -> (Bool, *World)
 +//Start world = writeDynamic "fib" (dynamic fib) world
 +
 +makeSeq :: Dynamic -> [Int]
 +makeSeq (x :: [Int]) = x
 +makeSeq _ = abort "You selected a file not containing a sequence"
 +
 +loadSeq :: String *World -> *([Int], *World)
 +loadSeq s world
 +# s = let l = size s in s % (0, l-5)
 +# (ok, dyn, world) = readDynamic s world
 +| not ok = abort "You didn't select a dynamic file"
 +| otherwise = (makeSeq dyn, world)
 +
 +Start :: *World -> ([Int], *World)
  Start world
 -	= world
 +# (inputfilepath, world) = selectInputFile world
 +| isNothing inputfilepath = abort "Please select a file"
 +# (sequence, world) = loadSeq (fromJust inputfilepath) world
 +| otherwise = (take 20 sequence, world)
 diff --git a/fp2/week3/mart/GetallenRaden.prj b/fp2/week3/mart/GetallenRaden.prj new file mode 100644 index 0000000..b3af0da --- /dev/null +++ b/fp2/week3/mart/GetallenRaden.prj @@ -0,0 +1,1594 @@ +Version: 1.4
 +Global
 +	ProjectRoot:	.
 +	Built:	True
 +	Target:	Object IO
 +	Exec:	{Project}\GetallenRaden.exe
 +	CodeGen
 +		CheckStacks:	False
 +		CheckIndexes:	True
 +	Application
 +		HeapSize:	2097152
 +		StackSize:	512000
 +		ExtraMemory:	81920
 +		IntialHeapSize:	204800
 +		HeapSizeMultiplier:	4096
 +		ShowExecutionTime:	False
 +		ShowGC:	False
 +		ShowStackSize:	False
 +		MarkingCollector:	False
 +		StandardRuntimeEnv:	True
 +		Profile
 +			Memory:	False
 +			MemoryMinimumHeapSize:	0
 +			Time:	False
 +			Stack:	False
 +		Output
 +			Output:	ShowConstructors
 +			Font:	Courier
 +			FontSize:	9
 +			WriteStdErr:	False
 +	Link
 +		LinkMethod:	Dynamic
 +		GenerateRelocations:	False
 +		GenerateLinkMap:	False
 +		LinkResources:	False
 +		ResourceSource:	
 +		GenerateDLL:	False
 +		ExportedNames:	
 +	Paths
 +		Path:	{Project}
 +		Path:	{Application}\Libraries\Dynamics
 +		Path:	{Application}\Libraries\Dynamics\implementation
 +		Path:	{Application}\Libraries\Dynamics\implementation\windows
 +		Path:	{Application}\Libraries\Dynamics\general
 +		Path:	{Application}\Libraries\Directory
 +	Precompile:	
 +	Postlink:	
 +MainModule
 +	Name:	GetallenRaden
 +	Dir:	{Project}
 +	Compiler
 +		NeverMemoryProfile:	False
 +		NeverTimeProfile:	False
 +		StrictnessAnalysis:	True
 +		ListTypes:	StrictExportTypes
 +		ListAttributes:	True
 +		Warnings:	True
 +		Verbose:	True
 +		ReadableABC:	False
 +		ReuseUniqueNodes:	True
 +		Fusion:	False
 +OtherModules
 +	Module
 +		Name:	StdCleanTypes
 +		Dir:	{Application}\Libraries\Dynamics
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdDynamic
 +		Dir:	{Application}\Libraries\Dynamics
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdDynamicFileIO
 +		Dir:	{Application}\Libraries\Dynamics
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	DynID
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	DynIDMacros
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	DynamicUtilities
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdDynamicLowLevelInterface
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdDynamicTypes
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdDynamicVersion
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	_SystemDynamic
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	DynamicGraphConversion
 +		Dir:	{Application}\Libraries\Dynamics\implementation\windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	DynamicLinkerInterface
 +		Dir:	{Application}\Libraries\Dynamics\implementation\windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	read_function.obj
 +	Module
 +		Name:	memory
 +		Dir:	{Application}\Libraries\Dynamics\implementation\windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	mem.obj
 +	Module
 +		Name:	memory_mapped_files
 +		Dir:	{Application}\Libraries\Dynamics\implementation\windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	low.obj
 +		NeededLibraries
 +			Library:	StdDynamic_kernel32_library
 +	Module
 +		Name:	shared_buffer
 +		Dir:	{Application}\Libraries\Dynamics\implementation\windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	BitSet
 +		Dir:	{Application}\Libraries\Dynamics\general
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	DefaultElem
 +		Dir:	{Application}\Libraries\Dynamics\general
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	EnDecode
 +		Dir:	{Application}\Libraries\Dynamics\general
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	md5
 +		Dir:	{Application}\Libraries\Dynamics\general
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	Directory
 +		Dir:	{Application}\Libraries\Directory
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	cDirectory.
 +	Module
 +		Name:	StdBitmap
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdControlDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdFileSelect
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdIOBasic
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdIOCommon
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdId
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdKey
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdMenuDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdPSt
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdPicture
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdPictureDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdProcessAttribute
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdProcessDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdTimerDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdWindowDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	cast
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	commondef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	device
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	deviceevents
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	devicefunctions
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	devicesystemstate
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	id
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	iostate
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	keyfocus
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	menuhandle
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	processhandle
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	processstack
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	receiverhandle
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	receivermessage
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	receivertable
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	roundrobin
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	scheduler
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	semidynamic
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	systemid
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	timerhandle
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	timertable
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	windowhandle
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	world
 +		Dir:	{Application}\Libraries\ObjectIO
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	clCCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	util_121.
 +			ObjectFile:	cpicture_121.
 +			ObjectFile:	cdebug_121.
 +			ObjectFile:	cCrossCall_121.
 +			ObjectFile:	cCrossCallWindows_121.
 +			ObjectFile:	cCCallWindows_121.
 +			ObjectFile:	cCCallSystem_121.
 +	Module
 +		Name:	clCrossCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	cCrossCallWindows_121.
 +			ObjectFile:	cCrossCallProcedureTable_121.
 +			ObjectFile:	cCrossCallCursor_121.
 +			ObjectFile:	cCrossCall_121.
 +			ObjectFile:	cCCallSystem_121.
 +			ObjectFile:	cCCallWindows_121.
 +			ObjectFile:	cAcceleratorTable_121.
 +		NeededLibraries
 +			Library:	userExt_library
 +			Library:	gdiExt_library
 +			Library:	kernelExt_library
 +			Library:	winspool_library
 +			Library:	winmm_library
 +			Library:	shell32_library
 +			Library:	ole32_library
 +			Library:	kernel32_library
 +			Library:	comctl32_library
 +			Library:	advapi32_library
 +	Module
 +		Name:	menuCCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	cCrossCallMenus_121.
 +	Module
 +		Name:	menuCrossCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	osactivaterequests
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	osbeep
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	osbitmap
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	osdocumentinterface
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	cCrossCallxDI_121.
 +	Module
 +		Name:	osevent
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	osfileselect
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	cCrossCallFileSelectors_121.
 +	Module
 +		Name:	osfont
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	osguishare
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	oskey
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	osmenu
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	osmouse
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	ospicture
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	osrgn
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	ossystem
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	ostime
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	ostoolbar
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	ostoolbox
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	cCrossCallFont_121.
 +	Module
 +		Name:	ostypes
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	pictCCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	rgnCCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	windowCCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +		NeededObjFiles
 +			ObjectFile:	cpicture_121.
 +			ObjectFile:	cCCallWindows_121.
 +	Module
 +		Name:	windowCrossCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdArray
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdBool
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdChar
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdCharList
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdClass
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdEnum
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdEnv
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdFile
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdFunc
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdInt
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdList
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdMisc
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdOrdList
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdOverloaded
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdReal
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdString
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdTuple
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	_SystemArray
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	_SystemEnum
 +		Dir:	{Application}\Libraries\StdEnv
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdArrayExtensions
 +		Dir:	{Application}\Libraries\StdLib
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdLibMisc
 +		Dir:	{Application}\Libraries\StdLib
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 +	Module
 +		Name:	StdMaybe
 +		Dir:	{Application}\Libraries\StdLib
 +		Compiler
 +			NeverMemoryProfile:	False
 +			NeverTimeProfile:	False
 +			StrictnessAnalysis:	True
 +			ListTypes:	StrictExportTypes
 +			ListAttributes:	True
 +			Warnings:	True
 +			Verbose:	True
 +			ReadableABC:	False
 +			ReuseUniqueNodes:	True
 +			Fusion:	False
 diff --git a/fp2/week3/mart/GetallenRaden.prp b/fp2/week3/mart/GetallenRaden.prp new file mode 100644 index 0000000..cc79889 --- /dev/null +++ b/fp2/week3/mart/GetallenRaden.prp @@ -0,0 +1,543 @@ +Version: 1.4
 +MainModule
 +	Name:	GetallenRaden
 +	Dir:	{Project}
 +	DclOpen:	False
 +	Icl
 +		WindowPosition
 +			X:	10
 +			Y:	10
 +			SizeX:	800
 +			SizeY:	600
 +	IclOpen:	False
 +OtherModules
 +	Module
 +		Name:	StdCleanTypes
 +		Dir:	{Application}\Libraries\Dynamics
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdDynamic
 +		Dir:	{Application}\Libraries\Dynamics
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdDynamicFileIO
 +		Dir:	{Application}\Libraries\Dynamics
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	DynID
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	DynIDMacros
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	DynamicUtilities
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdDynamicLowLevelInterface
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdDynamicTypes
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdDynamicVersion
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	_SystemDynamic
 +		Dir:	{Application}\Libraries\Dynamics\implementation
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	DynamicGraphConversion
 +		Dir:	{Application}\Libraries\Dynamics\implementation\windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	DynamicLinkerInterface
 +		Dir:	{Application}\Libraries\Dynamics\implementation\windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	memory
 +		Dir:	{Application}\Libraries\Dynamics\implementation\windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	memory_mapped_files
 +		Dir:	{Application}\Libraries\Dynamics\implementation\windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	shared_buffer
 +		Dir:	{Application}\Libraries\Dynamics\implementation\windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	BitSet
 +		Dir:	{Application}\Libraries\Dynamics\general
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	DefaultElem
 +		Dir:	{Application}\Libraries\Dynamics\general
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	EnDecode
 +		Dir:	{Application}\Libraries\Dynamics\general
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	md5
 +		Dir:	{Application}\Libraries\Dynamics\general
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	Directory
 +		Dir:	{Application}\Libraries\Directory
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdBitmap
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdControlDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdFileSelect
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdIOBasic
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdIOCommon
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdId
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdKey
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdMenuDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdPSt
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdPicture
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdPictureDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdProcessAttribute
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdProcessDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdTimerDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdWindowDef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	cast
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	commondef
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	device
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	deviceevents
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	devicefunctions
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	devicesystemstate
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	id
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	iostate
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	keyfocus
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	menuhandle
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	processhandle
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	processstack
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	receiverhandle
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	receivermessage
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	receivertable
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	roundrobin
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	scheduler
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	semidynamic
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	systemid
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	timerhandle
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	timertable
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	windowhandle
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	world
 +		Dir:	{Application}\Libraries\ObjectIO
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	clCCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	clCrossCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	menuCCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	menuCrossCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osactivaterequests
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osbeep
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osbitmap
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osdocumentinterface
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osevent
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osfileselect
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osfont
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osguishare
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	oskey
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osmenu
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osmouse
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	ospicture
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	osrgn
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	ossystem
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	ostime
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	ostoolbar
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	ostoolbox
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	ostypes
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	pictCCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	rgnCCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	windowCCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	windowCrossCall_12
 +		Dir:	{Application}\Libraries\ObjectIO\OS Windows
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdArray
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdBool
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdChar
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdCharList
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdClass
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdEnum
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdEnv
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdFile
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdFunc
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdInt
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdList
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdMisc
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdOrdList
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdOverloaded
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdReal
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdString
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdTuple
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	_SystemArray
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	_SystemEnum
 +		Dir:	{Application}\Libraries\StdEnv
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdArrayExtensions
 +		Dir:	{Application}\Libraries\StdLib
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdLibMisc
 +		Dir:	{Application}\Libraries\StdLib
 +		DclOpen:	False
 +		IclOpen:	False
 +	Module
 +		Name:	StdMaybe
 +		Dir:	{Application}\Libraries\StdLib
 +		DclOpen:	False
 +		IclOpen:	False
 diff --git a/fp2/week3/mart/fib.dyn b/fp2/week3/mart/fib.dyn new file mode 100644 index 0000000..8b8335a --- /dev/null +++ b/fp2/week3/mart/fib.dyn @@ -0,0 +1 @@ +0a49c9db651c81d64bfc61520d7cfd6b | 
