mirror of
https://github.com/ada-dmitry/PyProg_ada.git
synced 2026-09-24 01:10:40 +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
|