JanetDocsPlaygroundI'm feeling luckyGitHub sign in
# slice with strings (slice "Hello" 1) # => "ello" (slice "Playing" 0 -4) # => "Play" (slice "Playing" -4) # => "ing" # slice with keyword (slice :hello 1) # => "ello"