Copyright (c) 1993 The Regents of the University of California.
Copyright (c) 1994-1996 Sun Microsystems, Inc.

See the file "license.terms" for information on usage and redistribution
of this file, and for a DISCLAIMER OF ALL WARRANTIES.

RCS: @(#) $Id: incr.n,v 1.3.18.1 2004/10/27 12:52:40 dkf Exp $

.so man.macros
incr n "" Tcl "Tcl Built-In Commands"
S Note: do not modify the .SH NAME line immediately below!
NAME
incr - Increment the value of a variable
SYNOPSIS
incr varName ?increment? E
DESCRIPTION

Increments the value stored in the variable whose name is varName. The value of the variable must be an integer. If increment is supplied then its value (which must be an integer) is added to the value of variable varName; otherwise 1 is added to varName. The new value is stored as a decimal string in variable varName and also returned as result.

EXAMPLES
Add one to the contents of the variable x: .CS incr x .CE

Add 42 to the contents of the variable x: .CS incr x 42 .CE

Add the contents of the variable y to the contents of the variable x: .CS incr x $y .CE

Add nothing at all to the variable x (often useful for checking whether an argument to a procedure is actually numeric and generating an error if it is not): .CS incr x 0 .CE

"SEE ALSO"
expr(n)
KEYWORDS
add, increment, variable, value