Please check out Marcel Timmermann's GTK::Glade module. Here's the readme:
https://github.com/MARTIMM/gtk-glade
Sadly, modules.perl6.org is currently not available, however, you can
download the distribution here:
https://www.cpan.org/authors/id/M/MA/MARTIMM/Perl6/gtk-glade-0.8.3.tar.gz
or you
On 22/04/2019 12:51, ToddAndMargo via perl6-users wrote:
On 22/04/2019 03:32, ToddAndMargo via perl6-users wrote:
Hi All,
One liners are fast, but my own programs are very slow to start.
I download
https://github.com/perl6/gtk-simple/blob/master/examples/05-bars.pl6
To check it out and it
It's the second line:
use v6;
use lib 'lib'; # ← this line right here
use GTK::Simple;
use GTK::Simple::App;
-Timo
On 22/04/2019 12:51, ToddAndMargo via perl6-users wrote:
>>> On 22/04/2019 03:32, ToddAndMargo via perl6-users wrote:
Hi All,
One liners are fast, but my own progr
On 22/04/2019 03:32, ToddAndMargo via perl6-users wrote:
Hi All,
One liners are fast, but my own programs are very slow to start.
I download
https://github.com/perl6/gtk-simple/blob/master/examples/05-bars.pl6
To check it out and it also takes ten second to start.
What gives?
Many thanks,
-
It's quite possible that when you start that program, you're first
waiting for GTK::Simple to be precompiled; the "use lib 'lib'" can
interfere with the storage of precompilation results. If you have
installed GTK::Simple (for example by going to its folder and running
"zef install .") and removed