Vocabularyslots.
syntaxWord descriptionOutputs an array of slot values from a tuple.
USING: prettyprint slots.syntax ;
IN: slots.syntax.example
TUPLE: rectangle width height ;
T{ rectangle { width 3 } { height 5 } } slots{ width height } .
{ 3 5 }
Definition