This website works better with JavaScript
首页
发现
帮助
登录
jack
/
cocorobolx
关注
1
点赞
0
派生
0
文件
工单管理
0
Wiki
目录树:
28212ea24f
分支列表
标签列表
master
cocorobolx
/
skulpt
/
test
/
run
/
t187.py
t187.py
115 B
文件历史
原始文件
1
2
3
4
5
6
7
8
9
10
11
def gen():
i = 0
funky()
yield 1
i += 1
def funky():
print "cheese"
g = gen()
print g.next()