-
Notifications
You must be signed in to change notification settings - Fork 4
Core
no op
( -> )
evaluate quote or string
( [A] -> a )
drops the item on the bottom of the stack
( x -> )
> 1 2 3 drop
[ 1 2 ]
swaps the items on the bottom of the stack
( x y -- y x )
duplicates the item on the bottom of the stack
( x -- x x )
push items in a quote to the stack without evaluation
( [A B C] -> A B C)
Outputs the length of the Array, string, or object.
( {seq} -> {number} )
> [ 1 2 3 ] length
3
a shallow copy of a portion of an array or string
( seq from to -> seq )
splits a array or string
( seq at -> seq )
returns the position of the first occurrence of a specified value in a sequence
( seq item -> number )
f♭> [ 1 2 3 ] [ 4 5 6 ] zip
[ 1 4 2 5 3 6 ]
pushes a quotation maker onto the stack
collects stack items upto the last quote marker
pushes a quotation maker onto the stack, increments depth
decrements depth, collects stack items upto the last quote marker
pushes a quotation maker onto the stack
collects stack items upto the last quote marker, converts to an object
converts a string to a string template
wait x milliseconds
( x -> )
fetch a url as a string
( {url} -> {string} )
- Introduction
- Language
- Words
- Internal
- Definitions
- Examples