Help for this page

Select Code to Download


  1. or download this
    package Potato;
    use constant tuber => 1;
    
    ...
    
    package main;
    print Potato::tuber, Peach::tuber;
    
  2. or download this
    use constant visited_urls => {};
    ...
    unless ( visited_urls->{$my_url} ++ ) {
      ...
    }