For more information, see import and use/
You can refer directly to any of the parts that EGL defines without having to import them, and you can refer directly to functions in system libraries or EGL-defined enumerations without having to use them. These parts are therefore described as implicitly imported and used.
writeStdOut("Progam complete.");
package com.companyb.arpackage;
import com.companyb.crmpackage.*; // home of CustomerLib library
program CustomerTest type BasicProgram
use CustomerLib; // add these functions to my scope
function main()
getCustomer();
end
end