def sub(field mut a) -> field { a = a + 3; return a; } def main() -> field { return sub(4); }