
EN: rebol.com -
rebol.org -
rebol.net -
FR: Rebol Documentation Project -
forum RebelBB -
rebol-france.org -
forum codeur -
Déprotège un mot ou un bloc de mots.
unprotect value
value - La valeur en argument. (type: word! block!)
Déverrouille un mot verrouillé par PROTECT afin que sa valeur puisse être modifiée.
test: "Je suis protégé, personne ne peut me modifier!" protect 'test if error? try [test: "Essaye de changer test..."] [ print "N'a pas pu changer test!" ] N'a pas pu changer test!
unprotect 'test either error? try [test: "Essaye de changer test..."] [ print "N'a pas pu changer test!" ][ print "Mot test changé" ] Mot test changé
protect - Protège un mot ou un bloc de mots pour empêcher sa modification.