Name

fetch-plus-plus:forth_usual — ordinary primitive

Synopsis

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

Description

Fetch the value _x_ from _addr_, and increment the address by one cell.

 : @++  ( addr -- addr' x )  DUP CELL+ SWAP  @ ;