(x:Integer, y:Integer)
| 133 | if __name__ == '__main__': |
| 134 | @validated |
| 135 | def add(x:Integer, y:Integer) -> Integer: |
| 136 | return x + y |
| 137 | |
| 138 | @validated |
| 139 | def div(x:Integer, y:Integer) -> Integer: |
nothing calls this directly
no outgoing calls
no test coverage detected