state = varislock(scope, variable_name)
| Paramètre | Description |
|---|---|
| scope | une chaîne : 'global', 'base', 'caller', 'local'. |
| variable_name | une chaîne : nom de la variable. |
varislock renvoie vrai si variable_name a été déclarée comme variable verrouillée, et faux sinon.
y = 3;
varislock('local', 'y')
varlock('local', 'y')
varislock('local', 'y')
y = 4
varunlock('local', 'y')
varislock('local', 'y')
y = 4
| Version | Description |
|---|---|
| 1.0.0 | version initiale |