annotate python/closure.py @ 546:b7b4767d12de

.bashrc
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 12 Nov 2013 21:31:59 -0800
parents 6ae566bb1a99
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
177
6ae566bb1a99 add an example of lack of python closures
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 directory = 'foo'
6ae566bb1a99 add an example of lack of python closures
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2 bar = lambda: directory
6ae566bb1a99 add an example of lack of python closures
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3 directory = 'fleem'
6ae566bb1a99 add an example of lack of python closures
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 print bar()