in reply to Create a GUI for my Perl Program? Make Your Program Pretty?

Prima is one of the easiest GUI toolkits I've used for Perl, though it's a bit of a stretch to call it "pretty".

Wx is somewhat prettier, though a little harder to get started with.

I second davido's suggestion of skipping the GUI and going straight for a web-based API.

use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name
  • Comment on Re: Create a GUI for my Perl Program? Make Your Program Pretty?