This website works better with JavaScript
Главная
Обзор
Помощь
Вход
jack
/
cocorobolx
Следить
1
В избранное
0
Ответвить
0
Файлы
Задачи
0
Вики
Дерево:
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()