A test of Code syntax highlighting
I see a code syntax for blogger from this website, but I'm not success yet. I'll try this later.
#!/pusr/bin/perl
use strict;
my $file = shift;
open(FH,$file)||die "Error\n";
while(<FH>){
chomp;
my @q = split(/\t/,$_);
}
close FH;
留言