Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I don't have any experience writing command line scripts but I don't think you can switch between one script and the other like the way you are trying. If I were writing this I would use modules, something like this:

File unit6.pl

#!/usr/bin/perl use strict; use warnings; require Unit6; require CMQIA; # require Quadrilaterals; etc Unit6::run();

File Unit6.pm

package Unit6; use strict; use warnings; sub run { print " This is Unit 6 - Quadrilaterals and Polygons.\n For the Final Exam, you will have to know the\n properties of all quadrilaterals and how to\n prove that a given shape is any quadrilateral.\n To access the Quadrilateral Information Database,\n type 'Quads.' To access the Casio-Maxim Quadrilateral\n Identification Algorithm, type 'crazy Maxim.'\n Type 'quit' to exit Unit 6.\n Type your choice.\n\n"; my $Choice = <STDIN>; chomp $Choice; if ($Choice =~ /quit/i) { print "\nBye.\n\n"; exit;} elsif ($Choice =~ /quads/i) { Quadrilaterals::run();} elsif ($Choice =~ /crazy maxim/i) { CMQIA::run();} } 1;

File CMQIA.pm

package CMQIA; use strict; use warnings; sub run { print " Welcome to the Casio-Maxim Quadrilateral Identification\n Algorithm. In order to identify said quadrilateral,\n you must have the coordinates of all 4 vertices.\n"; print " When you are ready to input your coordines, type\n 'ready.' Type anything else to exit the CMQIA.\n\n"; my $Choice = <STDIN>; chomp $Choice; if ($Choice =~ /ready/i) { maxim();} else { Unit6::run();} } sub maxim { print "\nFor shape ABCD, in which point A has coordinates (X1, Y1) +, B has coordinates\n\n(X2, Y2), C has coordinates (X3, Y3), and D ha +s coordinates (X4, Y4),\n\nX1 = "; my $AX = <STDIN>; chomp $AX; print "Y1 = \n"; my $AY = <STDIN>; chomp $AY; print "X2 = \n"; # etc } 1;

In reply to Re: Error with require LABEL; by tangent
in thread Error with require LABEL; by slinky773

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-24 08:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found