github.phpd.cn/thought-machine/please@v12.2.0+incompatible/src/parse/asp/test_data/indexing.build (about)

     1  x = 'test'
     2  
     3  y = x[2]
     4  
     5  z = x[1:-1]
     6  
     7  a = x[2:]
     8  
     9  b = x[:2]
    10  
    11  c = x[y]