diff options
author | Ben Burwell <ben@benburwell.com> | 2016-10-07 09:42:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-07 09:42:10 -0400 |
commit | 85cdb4b15617b887de9888eee6a33036dc64facd (patch) | |
tree | dcc6b40b1a6d5bf4efe5d10be93b8335935b87d4 | |
parent | f704918fe2b187d715fe985ebffebdfbdc4b541f (diff) |
Delete function.doml
-rw-r--r-- | prog/function.doml | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/prog/function.doml b/prog/function.doml deleted file mode 100644 index 841cb0b..0000000 --- a/prog/function.doml +++ /dev/null @@ -1,19 +0,0 @@ -statement-sequence { - assign(name=myFunc) { - function(args=stringToPrint,val1,val2) { - print { - variable(name=stringToPrint) - bin-op(op=+) { - variable(name=val1) - variable(name=val2) - } - } - } - } - - call(name=myFunc) { - constant(val="hello, world!" type="string") - constant(val="3.5" type="number") - constant(val="7" type="number") - } -} |