I think it might be good for **simple-lang** to copy from **Python 2.7+** on array splitting using the index-based shorthand syntax syntax like so: ```simple fage = [ 1, 2, 4 ] display fage[.0~.1] // [ 1, 2 ] display fage[.1] // [ 2, 4 ] ```