Files
firestuff/2012-05-17-fun-python-question.html
2019-04-25 02:45:09 +00:00

19 lines
345 B
HTML

<!--# set var="title" value="Fun Python question" -->
<!--# set var="date" value="2012-05-17" -->
<!--# include file="include/top.html" -->
<p>What does this do?</p>
<pre><code>def func():
print 'foo'
return
yield 'bar'
print func()
</code></pre>
<p>Take a guess, then give it a try.</p>
<!--# include file="include/bottom.html" -->