3 lines
115 B
Bash
3 lines
115 B
Bash
|
|
integer num=5 # Declare an integer...
|
||
|
|
num=$num+1 # ...then increment without the let keyword.
|