diff options
author | Andrea Censi <acensi@ethz.ch> | 2022-02-21 12:22:37 +0100 |
---|---|---|
committer | Andrea Censi <acensi@ethz.ch> | 2022-02-21 12:22:37 +0100 |
commit | 5a5331537c3fa89ac1a553e101997e945ce97bc0 (patch) | |
tree | 86219565b8f58ed4ea9f02ff36c8a4ad682a2bd5 /src/act4e_solutions/intro.py | |
parent | Bump to version 7.1.2202211059 [ci skip] (diff) | |
download | act4e-5a5331537c3fa89ac1a553e101997e945ce97bc0.tar.gz act4e-5a5331537c3fa89ac1a553e101997e945ce97bc0.zip |
skeletons
Diffstat (limited to 'src/act4e_solutions/intro.py')
-rw-r--r-- | src/act4e_solutions/intro.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/act4e_solutions/intro.py b/src/act4e_solutions/intro.py new file mode 100644 index 0000000..4d8207f --- /dev/null +++ b/src/act4e_solutions/intro.py @@ -0,0 +1,6 @@ +import act4e_interfaces as I + + +class MySimpleIntro(I.SimpleIntro): + def sum(self, a: int, b: int) -> int: + raise NotImplementedError() |