Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    }
    
    april();
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
        }
        print "Goodbye, $name!\n";
    }
    
  3. or download this
        (define (new-if predicate then-clause else-clause)
          (cond (predicate then-clause)
                (else else-clause)))
    ...
          (define (good-enough? guess x)
            (< (abs (- (square guess) x)) 0.001))
          (sqrt-iter 1.0 x))