I could only find the documentation for [slicing a 
seq](https://nim-lang.org/docs/system.html#system-module-seqs), but it works 
the same way:
    
    
    let s = "1234567890"
    echo s[0..4]
    echo s[5..^1]
    
    
    Run

Reply via email to