It looks to me like you're declaring main after you use it. Since you're not doing &main, and main isn't defined yet, Perl might be stringifying it, thus generating the error you see.

Try using an &, or declare main before you use it.

Update: After verifying that what I was saying above didn't make 100% sense (as I tested what you were doing with my own arbitrarily named functions and it worked), I've been looking at the source for the Tk stuff for a while and have been unable to locate where this function is even defined! The only reference to it is in TkXSUBS.def, but it's commented out in the source I downloaded. I can't find any reference to Tk::exit or 'exit' in an .xs file anywhere. Goofy, but I don't claim to be an XS expert.

Just use Tk (); or explicitely name what you want exported. That should leave Tk::exit in Tk's namespace.


In reply to Re: Tk: exit main(@ARGV); fails by Fastolfe
in thread Tk: exit main(@ARGV); fails by tye

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.