let foo: int = 1; fun bar (baz: int) -> int = baz + 1; fun qux (quux: int) -> int = do let corge: int = quux + quux; bar(corge); end; print(qux(5));