perl로 Hello World를 찍어 보았다.

쉽군.

#!/usr/bin/perl

use strict;
use warnings;

print "hello world\n";

hello world


+ Recent posts