I am trying to learn Prima and trying to make a window menu by writing the code from the Prima's official book example:
#!/usr/bin/env perl use Prima qw(Application Buttons MsgBox); my $window = Prima::MainWindow->new( text=>'Hello world!', menuItems=>[ '~File', [ ['~Open', 'Ctrl+O', '^O', sub{message('open!')}], ['~Save as...', sub{message('save as!')}] ] ], size=>[200, 200] ); $window->insert(Button=> text=>'Click me', growMode=>gm::Center, onClick=>sub{message("Hello!")} ); run Prima;
But the menu doesn't appear on the window and in console, there is an error message:

menu build error: submenu is not an array at /usr/local/lib/x86_64-linux-gnu/perl/5.30.0/Prima/Classes.pm line 180.

I've broke my head, trying to figure it out. I don't see any problem with the Array structure, building the menu.

In reply to Prima Menu by igoryonya

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.