Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add quotes around environment variable assignments
  • Loading branch information
Paul Cochrane committed Mar 31, 2015
1 parent aa53797 commit 221a53d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Language/5to6.pod
Expand Up @@ -1061,12 +1061,12 @@ e.g.:
In Perl5 one of the environment variables to specify extra search paths for
Perl modules is C<PERL5LIB>.
$ PERL5LIB=/some/module/lib perl program.pl
$ PERL5LIB="/some/module/lib" perl program.pl
In Perl6 this is similar, one merely needs to change a number! As you
probably guessed, you just need to use C<PERL6LIB>:
$ PERL6LIB=/some/module/lib perl6 program.p6
$ PERL6LIB="/some/module/lib" perl6 program.p6
As with Perl5, if you don't specify C<PERL6LIB>, you need to specify the
library path within the program via the C<use lib> pragma:
Expand Down

0 comments on commit 221a53d

Please sign in to comment.