Copyright © tutorialspoint.com
Syntax
Definition and UsageImports all the functions exported by MODULE, or only those referred to by LIST, into the name space of the current package. Effectively equivalent to:
Also used to impose compiler directives (pragmas) on the current script, although essentially these are just modules anyway. Note that a use statement is evaluated at compile time. A require statement is evaluated at execution time. If the VERSION argument is present between Module and LIST, then the use will call the VERSION method in class Module with the given version as an argument. The default VERSION method, inherited from the UNIVERSAL class. Return Value
Example
|
Copyright © tutorialspoint.com