use strict; use warnings; use CGI qw(:standard); print header(), start_html(), start_form(), textfield("one"), br(), checkbox_group(-name => "list", -values => [qw(me mi mo mu)]), br(), textarea("text"), br(), submit(), end_form(), CGI::Dump(), # <-- Right here end_html();