ppm is the Programmer's Package Manager.
it's used to manage your existing perl modules or install new modules (those with a .ppd extension).

since you will have enough hazzle installing modules at some later point of your perl experience, ppm isn't really relevant to you at the moment.

i'd suggest you first get an editor, since notepad can get a bit annoying.
i use ConTEXT which is freeware and highlights perl code, displays line numbers, etc.
http://www.context.cx/

after you installed perl, most probably there's a PATH to your perl.exe file.
thus, to create a perl script and then run you do the following :

open editor.
write program.
eg:
#!perl print "HELLO PERL-WORLD";
save file as yourfile.pl
open DOS command prompt (since your on win)
cd into the directory "yourfile.pl" sits.
type : perl yourfile.pl
the text (ie HELLO ect.) appears in the dos-window under the 'perl yourfile.pl' command.

also there's a serious amount of really good tutorials around on the net.
eg : http://aspn.activestate.com/ASPN/docs/ASPNTOC-APERL5.6.0/

In reply to Re: Need help getting started with Win32 Perl Programming by b4e
in thread Need help getting started with Win32 Perl Programming by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.