change-year ( object quot -- object )


Vocabulary
accessors

Definition
USING: kernel ;

IN: accessors

: change-year ( object quot -- object )
over [ [ year>> ] dip call ] dip swap >>year ; inline