#!/usr/bin/perl # # simplenote v0.0.1 - The simplest note program I could hack # Copyright (C) 2011 Stian Skjæveland # # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # use Tk; $mw=MainWindow->new; $f=$mw->Frame->pack(-side => 'top', -fill => 'x'); $t=$mw->Scrolled("Text")->pack(-side => 'bottom', -fill => 'both', -expand => 1); MainLoop;