micropython

Annotated tests/list_assign.py

635:74ad0468297b
2013-01-15 Paul Boddie Added support for multiple class definitions in the same namespace with the same name. Made classes attribute users.
paul@139 1
#!/usr/bin/env python
paul@139 2
paul@139 3
[a, b, c] = [1, 2, 3]
paul@243 4
paul@243 5
result_1 = a
paul@243 6
result_2 = b
paul@243 7
result_3 = c
paul@139 8
paul@139 9
# vim: tabstop=4 expandtab shiftwidth=4