I wrote some utilities functions in a file named "utilities.efs"
I would like include this file into others EFS source without Copy/Paste to be sure I call the latest version each time.
For example :
INCLUDE "utilities.efs"
function main()
{
var sum=MyCompute(); //MyCompute is defined in "utilities.efs"
}
Can somebody tell me if it is possible ?
Thank you...
I would like include this file into others EFS source without Copy/Paste to be sure I call the latest version each time.
For example :
INCLUDE "utilities.efs"
function main()
{
var sum=MyCompute(); //MyCompute is defined in "utilities.efs"
}
Can somebody tell me if it is possible ?
Thank you...
Comment