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;
@font = ('-font' => ['‚l‚r@‚oƒSƒVƒbƒN', 12, 'normal']);

$mw = MainWindow->new;
$mw->Scale(
    @font,
    '-from'         => 0,
    '-to'           => 100,
    '-label'        => 'ƒ\',
    '-bigincrement' => 10,
    '-length'       => 200,
    '-orient'       => 'horizontal',
    '-resolution'   => 2,
    '-showvalue'    => 'yes',
    '-sliderlength' => 20,
    '-sliderrelief' => 'raised',
    '-tickinterval' => 10,
    '-variable'     => \$variable,
    '-width'        => 20,
    '-command'      => sub {},
)->pack;
MainLoop;