Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
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