summaryrefslogtreecommitdiffstats
path: root/src/act4e_solutions/intro.py
blob: 4d8207f87c3983969a91a3c8f9577f4ff7f636b3 (plain)
1
2
3
4
5
6
import act4e_interfaces as I


class MySimpleIntro(I.SimpleIntro):
    def sum(self, a: int, b: int) -> int:
        raise NotImplementedError()