5 lines
63 B
Python
5 lines
63 B
Python
|
import sys
|
||
|
|
||
|
def hello():
|
||
|
print("Hello %s!" % sys.platform)
|