Difference between revisions of "Getatom"
From OpenEUO
(Created page with " local val = getatom(str) Returns the value of an atomic variable that is available to all executing scripts in the same OpenEUO instance. The variable name is specified by the ...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
local val = getatom(str) | local val = getatom(str) | ||
Returns the value of an atomic variable that is available to all executing scripts in the same OpenEUO instance. The variable name is specified by the string str, and returns val, which can be a string or number (or nil). | Returns the value of an atomic variable that is available to all executing scripts in the same OpenEUO instance. The variable name is specified by the string str, and returns val, which can be a string or number (or nil). | ||
+ | |||
+ | [[Cmpsetatom]] | ||
+ | |||
+ | [[Listatoms]] | ||
+ | |||
+ | [[Setatom]] |
Latest revision as of 10:01, 9 October 2010
local val = getatom(str)
Returns the value of an atomic variable that is available to all executing scripts in the same OpenEUO instance. The variable name is specified by the string str, and returns val, which can be a string or number (or nil).