노출되는 이미지가 불편하시겠지만 양해를 구합니다. 노출, 클릭등에 관한 자료로 활용 중입니다.


Hello World를 Perl로 작성하기


1. 설치된 perl 위치 찾기

$ which perl
/usr/bin/perl


2. hello.pl 작성하기

#!/usr/bin/perl # 위치, Full Path # hello.pl # perl program name print "Hello World\n";

* #는 주석문 , ;(semi colon)는 명령문장의 끝


3. hello.pl 실행하기

$ ./hello.pl
Hello World
$ perl hello.pl
Hello World



* Perl은
Larry Wall이 만든 Practical Extraction and Report Language라는 언어로 문서 형태의 데이터로 부터 필요한 정보들을 추출(Extraction), 그 정보를 바탕으로 새로운 문서를 구성(Report)하는데 아주 잘 맞는 언어입니다.  http://www.perl.or.kr/perl_iyagi/intro



변수 $(일반변수) 


1. 작성하기
#!/usr/bin/perl
# hello.pl

$price=1000;
print "$price\n";

$price="1000" * 2;
print "$price\n";

print "Hello World\n";

$price="Very expensive.";
print "$price\n";

* 모든 숫자는 실수형( 정수형이 아니라)으로 저장 , 문자열로 재할당도 가능

2. 실행하기
$ ./hello.pl
1000
2000
Hello World
Very expensive.


블로그 이미지

StartGuide

I want to share the basic to programming of each category and how to solve the error. This basic instruction can be extended further. And I have been worked in southeast Asia more than 3 years. And I want to have the chance to work another country.

,