Im sorry, but where do i install Alien-wxWidgets, Wx, and Wx-Perl-Packager? Do I put them anywhere and then install them with PPM? Here is my code:

#!/usr/bin/perl use strict; use warnings; print "Simple Letter Counting Program\n"; print "Written by StmyD\n"; print "Processing...\n"; print "Please type word for counting: "; my $name = "<STDIN>"; my $size = length(<STDIN>); my $final = $size - 1; my $super = 100 - $final; print "Your word contains $final letters and is $super letters away fr +om being 100 letters!\n"; print "Dare to try me again? Enter here: "; my $name2 = "<STDIN>"; my $size2 = length(<STDIN>); my $final2 = $size2 - 1; my $super2 = 100 - $final2; print "Your word contains $final2 letters and is $super2 letters away +from being 100 letters!\n"; print "One more time... next step gets interesting? Enter here: "; my $name3 = "<STDIN>"; my $size3 = length(<STDIN>); my $final3 = $size3 - 1; my $super3 = 100 - $final3; print "Your word contains $final3 letters and is $super3 letters away +from being 100 letters!\n"; print "CLICK ENTER to continue to next step, or type 420!\n"; my $text = <STDIN>; print "Ok, lets try something new. Enter two numbers when prompted and + i will tell you\n a bit about them.\n"; print "Number 1: \n"; my $number1 = <STDIN>; print "Number 2: \n"; my $number2 = <STDIN>; my $abs1 = abs($number1 - $number2); my $awesome = 100 - $abs1; print "These numbers are $abs1 integers apart and their difference is +$awesome\n integers away from 100 "; print "All done.\n"; print "CLICK ENTER to exit!\n"; my $text = <STDIN>;

In reply to Re^4: Compiling Problems with PerlApp! Please Help. by StmyD
in thread Compiling Problems with PerlApp! Please Help. by StmyD

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.