Exercise 5.1: Difference between revisions

From Earlham CS Department
Jump to navigation Jump to search
Charliep (talk | contribs)
No edit summary
Charliep (talk | contribs)
No edit summary
Line 2: Line 2:
Exercise 5.1 in <i>Beginning Perl for Bioinformatics</i></b>
Exercise 5.1 in <i>Beginning Perl for Bioinformatics</i></b>


<code>
<source lang=perl>
#!/usr/bin/perl -w
#!/usr/bin/perl -w
use strict;
use strict;
Line 21: Line 21:


exit;
exit;
</code>
</source>

Revision as of 19:27, 22 September 2009

Return to Week 2 Exercise 5.1 in Beginning Perl for Bioinformatics

<source lang=perl>

  1. !/usr/bin/perl -w

use strict;

  1. Erika Phelps
  2. Sept. 21, 2009
  3. Exercise 5.1
  1. Write a nonhalting program.
  1. Define variables

my $var = 'DNA is COOL'; my $constant = '1';

  1. Create the while loop to be neverending...
   while($constant = '1'){
       print "$var!\n";

}

exit; </source>