Help for this page

Select Code to Download


  1. or download this
    # myscript.pl #
    # script must be run in a terminal #
    ...
    $window->add($button);
    $window->show_all();
    Gtk2->main;
    
  2. or download this
    # main.pl #
    my $k = 0;
    ...
        system("gnome-terminal -e 'perl myscript.pl'");
        $k++;
    }