Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    else { $drink = 'unknown'; }
    
    print $drink;
    
  2. or download this
    unknown
    
  3. or download this
    use warnings;
    use strict;
    ...
    }
    
    print $drink;
    
  4. or download this
    non alky
    
  5. or download this
    use warnings;
    use strict;
    ...
    }
    
    print $drink;
    
  6. or download this
    use warnings;
    use strict;
    ...
    sub doProperAlky {
        print 'proper alky';
    }