about summary refs log tree commit diff
path: root/users/aspen/achilles/ach/functions.ach
ty id : fn a -> a
fn id x = x

ty plus : fn int -> int
fn plus (x: int) (y: int) = x + y

ty main : fn -> int
fn main = plus (id 2) 7