Normal variables can be incremented like this:
c++
But it doesn't work for global variables:
$glob:c++
They need to be incremented like this:
$glob:c = $glob:c + 1
Is my observation correct or is my syntax wrong?
Normal variables can be incremented like this:
c++
But it doesn't work for global variables:
$glob:c++
They need to be incremented like this:
$glob:c = $glob:c + 1
Is my observation correct or is my syntax wrong?