image\overbutt.gifCreating a Perl program in Corel LINUX

You can program a simple Perl program in Corel LINUX. You can write the Perl program in the Text Editor available in Corel LINUX. The following program will display the text "Hello There."

To create a Perl program in Corel LINUX

1. Click Application Starter, Utilities, Text Editor.

2. Type the following lines of code in the Advanced Editor:

#!/usr/bin/perl

print "Hello There \n";

3. Save the file and call it:

hello.pl

image\nicon.gif Notes