diff options
Diffstat (limited to 'ach/functions.ach')
-rw-r--r-- | ach/functions.ach | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ach/functions.ach b/ach/functions.ach index 8d91564c1559..0d2f07eff574 100644 --- a/ach/functions.ach +++ b/ach/functions.ach @@ -1,3 +1,3 @@ fn id x = x -fn plus x y = x + y +fn plus (x: int) (y: int) = x + y fn main = plus (id 2) 7 |