JanetDocs
Playground
I'm feeling lucky
GitHub sign in
Run
Format
# slice with strings (slice "Hello" 1) # => "ello" (slice "Playing" 0 -4) # => "Play" (slice "Playing" -4) # => "ing" # slice with keyword (slice :hello 1) # => "ello"