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

#
# Purpose:
#	To demonstrate the Perl5 Cdk Calendar Widget

#
# Initialize Cdk.
#
use Cdk;
Cdk::init();

# Create the celendar object.
my $calendar = new Cdk::Calendar ('Highlight' => "A_REVERSE");

# Activate the object.
my $ret = $calendar->activate();

# Exit Cdk.
Cdk::end();