8 lines
86 B
Python
8 lines
86 B
Python
#!/usr/bin/env python3
|
|
|
|
def hej():
|
|
print("Jag kommer bara att säga hej")
|
|
|
|
hej()
|
|
|