in reply to Re^2: RFC: Net::SNTP::Client v1
in thread RFC: Net::SNTP::Client v1

The reason That I am having two use inside the sub is that I am trying to utilize minimum possible RAN memory, since the moment that you call a module it is loaded in the memory (correct?).
I don't think that is correct. From use:
Because use takes effect at compile time, it doesn't respect the ordinary flow control of the code being compiled. In particular, putting a use inside the false branch of a conditional doesn't prevent it from being processed.

Replies are listed 'Best First'.
Re^4: RFC: Net::SNTP::Client v1
by u65 (Chaplain) on Jul 01, 2015 at 11:46 UTC

    Note for future: use applies only to the current scope in Perl 6.

Re^4: RFC: Net::SNTP::Client v1
by thanos1983 (Parson) on Jun 30, 2015 at 17:30 UTC

    Done ;)

    Seeking for Perl wisdom...on the process of learning...not there...yet!