Hello
>
> I need to find a place to put use statements in. Where is the right place?
>
Every file runs in it own namespace, so when the module exports symbol, you
must put the use in the file where want to use the exported symbols. In your
case in base.epl (or you have use the full name i.e. Croa
Hello
I need to find a place to put use statements in. Where is the right place?
I tried to put them in the const.epl:
[-
use lib;
use another_lib;
use strict;
use Croak;
-]
and from base.epl i call
[-
Execute('./const.epl');
-]
But this do not work:
196]ERR: 32: Line 8: W