Name

store-plus-plus:forth_usual — ordinary primitive

Synopsis

FORTH
!++ ( addr x -- addr' )(); 
 ;

Description

Store the value _x_ into _addr_, and increment the address by one cell.

 : !++  ( addr x -- addr' )  OVER !  CELL+ ;