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