Vocabularyslots.
syntaxWord descriptionSets slot values in a tuple from an array.
USING: prettyprint slots.syntax kernel ;
IN: slots.syntax.example
TUPLE: rectangle width height ;
rectangle new { 3 5 } set-slots{ width height } .
T{ rectangle { width 3 } { height 5 } }
Definition