in reply to [Perl6] Problem using Inline::Perl5
Hi,
So the perl6 version is loading the perl5 module?
How does perl6 tell perl5 about classes created in perl6 ?
Try this , it makes no classes ;)
use Wx qw/ :allclasses /; my $app=Wx::SimpleApp->new; my $frame = Wx::Frame->new( undef,-1,"Sand!" ); $frame->Show; $app->MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: [Perl6] Problem using Inline::Perl5 (Wx)
by Corion (Patriarch) on Dec 17, 2016 at 23:12 UTC | |
|
Re^2: [Perl6] Problem using Inline::Perl5 (Wx)
by holli (Abbot) on Dec 20, 2016 at 06:57 UTC | |
by beech (Parson) on Dec 20, 2016 at 08:33 UTC |