Help for this page

Select Code to Download


  1. or download this
    if (my $foo) {
        # $foo is lexically scoped to this block
        bar();
    }
    
  2. or download this
    for my $foo (@foo) {
        # $foo is lexically scoped to this block
        baz();
    }