8 lines
97 B
Python
8 lines
97 B
Python
|
#! /usr/bin/env python3
|
||
|
|
||
|
def hello(name):
|
||
|
print('hello, '+name)
|
||
|
|
||
|
hello('alice')
|
||
|
hello('bob')
|