Mostly for personal curiosity reasons:
Many modern languages provides something called interator (sic?), ... it will be really cool, if you can write this in Python.
Since this isn't Python, but Perl, where
my $file = './test_file';
#my $line = inFile->new($file);
open (my $FILE, '<', $file)
|| die "failed to open $fname ($!)\n";
while (<$FILE>) {
#print $line->getLine();
print;
}
close $FILE || die "failed to open $fname ($!)\n";
Should suffice.
This may not be substantial for a short exercise, but if this is a base for a bigger application, it could cause it to bloat. Any reason why you picked this way to "Do It"?
Software speaks in tongues of man; I debug, therefore I code.
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.