The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

use utf8;
sub handler {
	my $param = shift;
	return {
		students => [
			[ 'Peter', 'Wolf' ],
			[ 'Brian', 'Fox' ],
			[ 'Leslie', 'Child' ],
			[ 'Barbara', 'Bailey' ],
			[ 'Russell', 'King' ],
			[ 'Michael', 'Johnson' ],
			[ 'Michael', 'Shell' ],
			[ 'Tim', 'Jasmine' ],
		],
		program => {
			id => 1523,
			name => 'Šílené laně',
			code => '8234B',
			}
	};
}

1;