slots[
Slots syntax sugar

Next:get[


Vocabulary
slots.syntax

Word description
Outputs several slot values to the stack.
USING: kernel prettyprint slots.syntax ; IN: slots.syntax.example TUPLE: rectangle width height ; T{ rectangle { width 3 } { height 5 } } slots[ width height ] [ . ] bi@
3 5


Definition