I was going to try to help flamey with his
LWP::Simple problem. However, I had a different problem. I need to modify my
@*INC, but have not been successful with it. Here are a couple of my attempts:
use v6;
BEGIN{ push @*INC, 'C:\Rakudo\lib';}
use LWP::Simple;
This gives the following error:
===SORRY!===
Confused at line 2, near "BEGIN{ pus"
shell returned 1
I also tried:
use v6;
push @*INC, 'C:\Rakudo\lib';
use LWP::Simple;
Which gives the following error:
===SORRY!===
Unable to find module 'LWP::Simple' in the @*INC directories.
(@*INC contains:
C:\Documents and Settings\HP_Administrator/.perl6/lib
/Parrot-2.5.0/lib/parrot/languages/perl6/lib
.)s ENTER or type command to continue
shell returned 1
I am using Rakudo Star, installed on Windows using the MSI installer.
UPDATE:
On my Linux installation trying to use the BEGIN block also gives an error.
However, LWP::Simple is already in one of the
@*INC paths.
UPDATE 2:
Just a note that it is actually more intuitive to use
unshift instead of
push when modifying
@*INC. This puts your added path at the beginning of
@*INC, where it will be given precedence over "default" paths.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.