diff options
author | Camil Staps | 2016-01-31 14:46:55 +0100 |
---|---|---|
committer | Camil Staps | 2016-01-31 14:46:55 +0100 |
commit | 2fb8dc632b4c007033d9a40c6d6ab060d1ea1fe3 (patch) | |
tree | 1877df4581887fd0e79aa396b64e61b28ada87a3 /cleanc.icl | |
parent | Makefile (diff) |
Working version
Diffstat (limited to 'cleanc.icl')
-rw-r--r-- | cleanc.icl | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/cleanc.icl b/cleanc.icl deleted file mode 100644 index b3f037c..0000000 --- a/cleanc.icl +++ /dev/null @@ -1,17 +0,0 @@ -implementation module cleanc - -puti :: !Int !*State -> *State -puti i s = code inline { - ccall puti "I:V:I" -} - -call :: !String !*State -> *State -call f s = code inline { - ccall call "S:V:I" -} - -geti :: !*State -> (!Int, !*State) -geti s = code inline { - ccall geti ":I:I" -} - |