interface hello_interface_function { in void hello(); out void world(); behaviour { on hello: func(); void func() { world; } } }