mirror of
https://github.com/ada-dmitry/PyProg_ada.git
synced 2026-09-24 09:20:44 +00:00
8 lines
93 B
Python
8 lines
93 B
Python
|
|
|
|
def f(a: int, b: int) -> int:
|
|
'''
|
|
this is an add function
|
|
'''
|
|
return a + b
|