The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use utf8;
my $f = DateTime::Format::Czech->new(show_time => 1, compound_format => '%s | %s');
is $f->format_datetime(DateTime->new(year=>2010, month=>6, day=>13, hour=>13, minute=>4)),
'13. června | 13.04';
done_testing;