컴퓨터 과학 & 영상처리 관련/Perl

리눅스에서 perl 헬로월드 출력해보기

꺄뜨르 2014. 3. 16. 20:57

설치

sudo apt-get install perl

 

소스코드 작성(vim test.pl)

#!/usr/bin/perl
 
use strict;
use warnings;
 
print "hello world\n";

 

실행

perl test.pl