((...)): Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 12: Line 12:
local i=0
local i=0
((i++))
((i++))
</syntaxhighlight>
=Decrement an Integer=
<syntaxhighlight lang='bash'>
local i=1
((i--))
</syntaxhighlight>
</syntaxhighlight>

Revision as of 01:39, 14 March 2020

Internal

a

b

Increment an Integer

local i=0
((i++))

Decrement an Integer

local i=1
((i--))