This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
jack
/
cocorobolx
Segui
1
Vota
0
Forka
0
File
Problemi
0
Wiki
Albero (Tree):
e0ea877bab
Rami (Branch)
Tag
master
cocorobolx
/
skulpt
/
test
/
run
/
t362.py
t362.py
126 B
Cronologia
Originale
1
2
3
4
5
6
7
8
9
10
11
def f(x):
print "f(%s) called" % x
return True
def g():
l = []
if f(3):
l.append(3)
print l
g()