craftbeerpi4-pione/sample.py

8 lines
68 B
Python
Raw Normal View History

2019-01-14 07:33:59 +01:00
2019-07-27 21:08:19 +02:00
def test123(name: str) -> str:
2019-01-14 07:33:59 +01:00
2019-07-27 21:08:19 +02:00
print(name)
2019-01-14 07:33:59 +01:00
2019-07-27 21:08:19 +02:00
test123("HALLO")