@bogdan said in Compiled App Exit Function:
For anyone who is looking for a solution in the future here it is :
If you only need to call the "CloseApplication()" function, then you can do it easier:
HTML Code
Do functions themselves carry referenceable names.
Is there a way to make each function name be a variable without setting variable each time?
@hellomembersha said in Function Variable:
Do functions themselves carry referenceable names.
Is there a way to make each function name be a variable without setting variable each time?
"Execute code"
[[NEW_VARIABLE]] = function(){log("hello")};
Use [[NEW_VARIABLE]](), type expression
Thank you fox