Help for this page

Select Code to Download


  1. or download this
    { our $var = 20; }
    print("$var\n");  # 20
    
  2. or download this
    use strict;
    { our $var = 20; }
    print("$var\n");  # Compile-time error.