Arc Forumnew | comments | leaders | submitlogin
1 point by Pauan 5151 days ago | link | parent

I just pushed out the fixed version, so it should work just fine now. One thing I forgot to mention: it works with assignment as well. Thus, this:

  (= (foo 0 1) '(1 2 3))
Is the same as this, in Python:

  foo[0:1] = [1, 2, 3]