First test work commit, don't touch

This commit is contained in:
Robert Virding
2018-12-22 01:23:40 +01:00
parent 3ceb8c38db
commit d4d02fd576
97 changed files with 10599 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
contract NameClash =
function double_proto : () => int
function double_proto : () => int
function proto_and_def : int => int
function proto_and_def(n) = n + 1
function double_def(x) = x
function double_def(y) = 0
// abort, put and state are builtin
function abort() : int = 0
function put(x) = x
function state(x, y) = x + y