- This wiki is out of date, use the continuation of this wiki instead
Import
From FenixWiki
[edit] Definition
Import "<file name>";
Imports a Fenix DLL with name <file name> into the program, which allows the usage of additional functions in a Fenix program. For more information, see the article on DLLs.
[edit] Example
Import "my_dll.dll";
Process main()
Begin
Loop
Frame;
End
End
Used in example: import
