micropython

Change of tests/subscripts.py

216:526a20aebd06
tests/subscripts.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tests/subscripts.py	Sun May 17 20:01:13 2009 +0200
     1.3 @@ -0,0 +1,8 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +l = [1, 2, 3]
     1.7 +x = l[0]
     1.8 +y = l[1]
     1.9 +z = l[-1]
    1.10 +
    1.11 +# vim: tabstop=4 expandtab shiftwidth=4