Help for this page

Select Code to Download


  1. or download this
    icecream_flavour = 'vanilla'
    # ...
    if 1:
       icecream_flavor = 'chocolate'
    print(icecream_flavour)
    
  2. or download this
    use strict;
    my $icecream_flavour = 'vanilla';
    ...
       $icecream_flavor = 'chocolate';
    }
    print $icecream_flavour;