varunlock
Déroque une variable.
📝 Syntaxe
varunlock(scope, variable_name)
📥 Argument d'entrée
scope - une chaîne : 'global', 'base', 'caller', 'local'.
variable_name - une chaîne : nom de la variable.
📄 Description
varunlock déverrouille une variable.
💡 Exemple
y = 3;
varislock('local', 'y')
varlock('local', 'y')
varislock('local', 'y')
y = 4
varunlock('local', 'y')
varislock('local', 'y')
y = 4
varlock('local', 'ans')
varislock('local', 'ans')
🔗 Voir aussi
🕔 Historique
Version
📄 Description
1.0.0
version initiale
Last updated
Was this helpful?