Help for this page

Select Code to Download


  1. or download this
    perl -e 'use strict; our $c; BEGIN{ $c=1 } print $c'
    
  2. or download this
    perl -e 'use strict; BEGIN{ our $c=1 } our $c; print $c'
    
  3. or download this
    perl -e 'use strict; BEGIN{ our $c=1 } print our $c'