summaryrefslogtreecommitdiff
path: root/fp2/week2/mart/oldold/old/Random.dcl
diff options
context:
space:
mode:
authorMart Lubbers2015-04-25 12:18:42 +0200
committerMart Lubbers2015-04-25 12:18:42 +0200
commit78636495692cc41761ad58f10b4479b6f06bdbaf (patch)
treeadd78181b03a26e53e210eeea7f5278492218bd1 /fp2/week2/mart/oldold/old/Random.dcl
parentAdded Test (copy line from file to other file) (diff)
finally, week2 done:)
Diffstat (limited to 'fp2/week2/mart/oldold/old/Random.dcl')
-rw-r--r--fp2/week2/mart/oldold/old/Random.dcl19
1 files changed, 0 insertions, 19 deletions
diff --git a/fp2/week2/mart/oldold/old/Random.dcl b/fp2/week2/mart/oldold/old/Random.dcl
deleted file mode 100644
index 47a7c18..0000000
--- a/fp2/week2/mart/oldold/old/Random.dcl
+++ /dev/null
@@ -1,19 +0,0 @@
-definition module Random
-
- // Random number generator voor Linux gebruikers
- // interface compatible met Random.dcl (helaas)
- // -- mschool@science.ru.nl
-
-import StdFile
-
-:: RandomSeed
-
-// nullRandomSeed generates a fixed RandomSeed
-nullRandomSeed :: RandomSeed
-
-// GetNewRandomSeed generates a good RandomSeed, using /dev/urandom
-getNewRandomSeed :: !*env -> (!RandomSeed, !*env) | FileSystem env
-
-// Given a RandomSeed, Random generates a random number and a new RandomSeed.
-random :: !RandomSeed -> .(!Int, !RandomSeed)
-