The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/local/bin/perl -w

use Tk;
use Tk::Xlib;

my $mw = MainWindow->new;

foreach ($mw->Display->XListFonts('-*-Times-*',32768))
 {
  print "$_\n";
 }