diff options
author | Mart Lubbers | 2015-04-24 09:10:46 +0200 |
---|---|---|
committer | Mart Lubbers | 2015-04-24 09:10:46 +0200 |
commit | aebffcc1c786e8cea15fff6f324bf71fc37cbb37 (patch) | |
tree | 0879f685fc1a35361727a203b437c67bb486e981 /files/practicum/GetallenRaden.icl | |
parent | started with week2 (diff) |
updated practicum files
Diffstat (limited to 'files/practicum/GetallenRaden.icl')
-rw-r--r-- | files/practicum/GetallenRaden.icl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/files/practicum/GetallenRaden.icl b/files/practicum/GetallenRaden.icl new file mode 100644 index 0000000..f03750a --- /dev/null +++ b/files/practicum/GetallenRaden.icl @@ -0,0 +1,13 @@ +module GetallenRaden
+
+/* Dynamics werken alleen met de 32-bit versie van de Clean compiler.
+ (*) Gebruik Environment 'Experimental'
+ (*) In Project:Project Options: zet vlag 'Enable dynamics' aan
+*/
+import StdEnv
+import StdDynamic, StdDynamicFileIO // nodig voor dynamics en dynamics in files
+import StdFileSelect // platform file-selector dialoog
+
+Start :: *World -> *World
+Start world
+ = world
|