Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warning;
    
  2. or download this
    if ($another == 'y')
    
  3. or download this
    my $another = <STDIN>;
    chomp $another;
    if ($another eq 'y') {
        ...
    }
    
  4. or download this
    $draw1 = int &draw;
    
  5. or download this
    sub draw {
      $draw = int rand(10);
    }