commited all contents created by participants
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import imports.arguments as ARG
|
||||
import imports.fichiers as fichiers
|
||||
|
||||
fichier = ARG.obtenir( '-f' )
|
||||
|
||||
|
||||
if ( fichier ):
|
||||
fichiers.exporter( 'toto.txt', 'kikoo' )
|
||||
|
||||
|
||||
def main ():
|
||||
kopi = {
|
||||
'data' : ['a','b','c'],
|
||||
}
|
||||
salut( kopi )
|
||||
print kopi
|
||||
|
||||
|
||||
def salut ( a ):
|
||||
print a
|
||||
a['data'] = [ 'c', 'd', 'e' ]
|
||||
|
||||
main()
|
||||
Reference in New Issue
Block a user