Help for this page

Select Code to Download


  1. or download this
    my %hash = (
        polygon => {
    ...
            def => ["22, 33, 44, 44", "1, 1, -3, -6"],
        }
    );
    
  2. or download this
    for my $shape (sort keys %hash) {
        for my $class (sort keys %{$hash{$shape}}) {
    ...
    LINE
        }
    }