Python/basics.py
2020-02-03 14:53:39 +00:00

3 lines
68 B
Python

def concat(a, b):
return a + b
print(concat("Hello", " World!"))