2015年7月19日日曜日

テスト

シンタックスハイライターのテスト

# yum update -y
# yum install gcc make gcc-c++ openssl-devel -y
# yum install httpd
# service httpd start
# chkconfig httpd on
#!/usr/bin/env perl
use strict;
use warnings;

my %Config = (
  name => 'aaa',
);

do_task();

sub do_task {
  print "hello world, $Config{name}!¥n";
}


どうだろう