diff --git a/examples/cgi.pl b/examples/cgi.pl new file mode 100644 index 0000000..a47a652 --- /dev/null +++ b/examples/cgi.pl @@ -0,0 +1,8 @@ +use v6; +use CGI:from; + +my $q = CGI.new; +print $q.header, + $q.start_html('Hello World'), + $q.h1('Hello World'), + $q.end_html;