def add(field a,field b) -> field { return a + b; } def main(field a,field b) -> field { field c = add(a, b); return c; }