The first image of strawberry perl

Well,A 100% Open Source Perl for Windows that is exactly the same as Perl everywhere else; Today,I will begin with strawBerry perl Now. The following statement will give us a more clear representation about StrawBerry Perl:

     "StrawBerry Perl' is a perl enviroment for Microsoft Windows containing all
     you need to run and develop perl applications. It is designed to be as close
     as possible to perl enviroment on UNIX systems. "

First of all,I download the installer from http://strawberryperl.com/releases.html,because my system is 64bit,so I chose "strawberry-perl-5.12.3.0-64-bit.msi". After the installation finished,I reboot my computer.

Second,It's time to check whether the installation of StrawBerry perl is ok or not.
I created a simple program with  text editor  notepad++,and named the program "hello_world.txt",the contents like this:      
        
 print "Hello,world!\n";

And then I run the perl command in the cmd,

c:\strawBerry\programs>perl hello_world.txt
Hello,world!

It print the "Hello,world!"! As a result,perl is installed well. BTW,my operating system is win7.
Form Now on I will begin the journey of perl with the wonderful  book:
---------------------------------------------------------------------------------
Learning Perl,Sixth Edition
by Randal L. Schwartz,brian d foy,and Tom Phoenix
---------------------------------------------------------------------------------------------



There is nothing more wonderful than a book. It may be a message to us from the dead,from human souls we never saw who lived perhaps thousands of miles away. And yet these little sheets of paper speak to us,arouse us,teach us,open our hearts,and in turn open their hearts to us like brothers. Without books God is silent,justice  dormant ,philosophy lame
---Charles Kingsley,English historian and novelist.

相关文章

1. 如何去重 #!/usr/bin/perl use strict; my %hash; while(...
最近写了一个perl脚本,实现的功能是将表格中其中两列的数据...
表的数据字典格式如下:如果手动写MySQL建表语句,确认麻烦,...
巡检类工作经常会出具日报,最近在原有日报的基础上又新增了...
在实际生产环境中,常常需要从后台日志中截取报文,报文的形...
最近写的一个perl程序,通过关键词匹配统计其出现的频率,让...