The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use Sjis 0.64;
use Tk;
use Tk::DialogBox;

$mw = MainWindow->new;
$mw->DialogBox(
    '-title'          => 'ƒ\',
    '-buttons'        => ['•\', 'ƒ\'],
    '-default_button' => '•\',
    '-cancel_button'  => 'ƒ\',
)->Show;
MainLoop;