diff --git a/able-script-test/functio.able b/able-script-test/functio.able new file mode 100644 index 0000000..f1ad098 --- /dev/null +++ b/able-script-test/functio.able @@ -0,0 +1,6 @@ +functio hello(words){ + words print; +} + + +hello("wonk"); diff --git a/able-script-test/function.able b/able-script-test/function.able deleted file mode 100644 index a723c1c..0000000 --- a/able-script-test/function.able +++ /dev/null @@ -1,9 +0,0 @@ -functio something(a: isize, c: isize, r: &mut isize) { - *r = a + c; -} - -let a = 3; -let b = 4; -let mut r = 0; - -something(a, b, &mut r);