aboutsummaryrefslogtreecommitdiff
path: root/cleanc.icl
diff options
context:
space:
mode:
authorCamil Staps2016-01-31 14:46:55 +0100
committerCamil Staps2016-01-31 14:46:55 +0100
commit2fb8dc632b4c007033d9a40c6d6ab060d1ea1fe3 (patch)
tree1877df4581887fd0e79aa396b64e61b28ada87a3 /cleanc.icl
parentMakefile (diff)
Working version
Diffstat (limited to 'cleanc.icl')
-rw-r--r--cleanc.icl17
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"
-}
-