def main(field x) -> field { field mut a = x + 5; field b = a + x; a = 7; field c = a + b; a = a + 5; return a + c; }