Perl (perl 2018.12) sample

Here is a Perl sample code:

#!/usr/bin/perl

use strict;
use warnings;

# Print "Hello, World!"
print "Hello, World!\n";

This code is a simple Perl script that prints "Hello, World!" to the console. The print statement is used to display the text, and the \n is a special character that represents a newline.

Please note that this is a basic example, and Perl is a powerful programming language with many features and capabilities. Let me know if you have any further questions.