Importing Files
How to include other scripts in your script
Usage
Importing Uncompiled Scripts
Experiment.flow
// Import another Flowscript into the script
import( "Test.flow" );
void Main() {
// Call procedure from the imported FlowScript
ShowWindow();
}Test.flow
Test.msg
Results
Importing Compiled Scripts
Conclusion
MenusLast updated