PERL
32
First Perl Program
Guest on 26th May 2023 01:01:56 PM
#!/usr/bin/perl
# first.pl
print "Content-type: text/html\n\n";
<html>
<head>
<style>
h1.myclass {
color: green;
}
</style>
<title>First Perl Program</title>
</head>
<body>
<h1>Hello,World!</h1>
</body>
</html>
EOF
Raw Paste
Login or Register to edit or fork this paste. It's free.