Skip to content

Instantly share code, notes, and snippets.

@tomcha
Created December 3, 2015 03:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomcha/dc1c3aa10f0fc8b6c92a to your computer and use it in GitHub Desktop.
Save tomcha/dc1c3aa10f0fc8b6c92a to your computer and use it in GitHub Desktop.
38
#!/usr/bin/env perl
use strict;
use warnings;
my @array;
for my $i (1..10){
push @array, $i;
}
my $sum = $array[2] + $array[5] + $array[9];
print "3番目の要素、6番目の要素、10番目の要素の合計は$sumです。\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment