Difference between revisions of "User:Haama/FAR"
Jump to navigation
Jump to search
m
no edit summary
imported>Haama m (Created) |
imported>Haama m |
||
Line 1: | Line 1: | ||
Functional Activators refer to scripts that behave like common programming [http://en.wikipedia.org/wiki/Function_(computer_science) functions]. Like functions, they can: | |||
#Be called from another script at any time | |||
#Will happen immediately, before the next line of code is processed | |||
#Can be nested (though note the limitation below) | |||
#Take input parameters and can return output parameters | |||
#Make your code easier to read and write | |||
#Centralize sections of your code | |||
General description | General description | ||
Line 13: | Line 21: | ||
*Only 4 within each other | *Only 4 within each other | ||
*Careful with Labels/loops | *Careful with Labels/loops | ||
*Will take more processing due to more set/if statements, but those take 1000s to become a problem | |||
Preference over other script types (should really be on Global page) | Preference over other script types (should really be on Global page) |