The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

#TITLE: Input
#REQUIRES: Gtk

  use Gtk;
  Gtk->init;
  my $mw = new Gtk::Window('toplevel');
  Gtk::Gdk->input_add(fileno(STDOUT), 'write', sub { } );
  $mw->show;
  Gtk->main;