CONTENTS | PREV | NEXT
5K. increase statement (INC/DEC)
--------------------------------
INC, DEC

syntax:		INC <var>
		DEC <var>

[obsolete]
short for <var>:=<var>+1 and <var>:=<var>-1. Only difference with
var++ and var-- is that these are statements, and do not return a value.