I&#39;m making a program with PLT Scheme and I&#39;ve created my window using (new frame%) and added a menu with (new menu-bar%).<br>The simple question is: how do I make a menu-item to close my program? Should I call some kind of yield? I can&#39;t this information :(<br>
<br>My code so far for the buttun is only:<br><br>(define quit-item (new menu-item% [parent file-menu] [label &quot;Quit&quot;]<br>                            (callback (lambda (button event)<br>                                        &#39;Q))))<br>
<br> - Moberg<br>