18,700
edits
(clarifying that bool variables are broken, not necessarily bool functions; wording; typo fix) |
(uh, sleep doesn't operate in whole seconds; better getter example) |
||
Line 691: | Line 691: | ||
{ | { | ||
dmsg("hey"); | dmsg("hey"); | ||
sleep( | sleep(15); | ||
fork hey(); | fork hey(); | ||
} | } | ||
Line 708: | Line 708: | ||
schedule hey() repeat 0 every 60; | schedule hey() repeat 0 every 60; | ||
==Variables== | ==Variables== | ||
Line 722: | Line 720: | ||
...but not when getting or setting its value later: | ...but not when getting or setting its value later: | ||
if (i eq 0)... | |||
i = 4; | i = 4; | ||
==Built-in functions and variables== | ==Built-in functions and variables== |