September 2017
Beginner
402 pages
9h 52m
English
It is possible to export a variable from a module:
unit module Credentials;our $username is export = 'alpha'
Using this variable is as simple as using a regular variable:
use Credentials;say "User = $username";
Read now
Unlock full access