9 lines
113 B
Python
9 lines
113 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
def ma_fonction()
|
||
|
print("voici ma fonction !")
|
||
|
pass
|
||
|
|
||
|
def __main__()
|
||
|
ma_fonction()
|