- This topic has 3 replies, 3 voices, and was last updated 4 years, 1 month ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Integrated Application Platform
Integrated Application Platform › Forums › General › Call function inside function
I have a function in which there is a call to another function.
Interpreter does not like it and marks it in red.
What can I do?
It depends on how your functions are defined. If they are defined as global definitions in a library then you just have to make sure the name is capitalized and that you are spelling it correctly.
If the function is dynamically defined, you need to keep in mind that functions do not have closure like blocks do in Suneido so you can’t do something like:
a = function() { }
b = function() { a() }
b()
If this does not answer your question, consider posting an example of what you are trying to do.
Hi