#include "std/io.toc", io; f ::= fn() (int, int) { x := 5; y := 88; defer x += 1; x, y } main ::= fn() { a,b := f(); io.puti(a); io.puti(b); }