Exercise 5.1

From Earlham CS Department
Revision as of 23:41, 21 September 2009 by Erika (talk | contribs) (New page: Return to Week 2 <b>Exercise 5.1 in <i>Beginning Perl for Bioinformatics</i></b> <br><br> <nowiki>#!/usr/bin/perl -w use strict;</nowiki> #Erika Phelps #Sept. 21, 2009 #Exercise 5.1 ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Return to Week 2

Exercise 5.1 in Beginning Perl for Bioinformatics

#!/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;