[ create a new paste ] login | about

Project: bioinformatics
Link: http://bioinformatics.codepad.org/Tx0qRg3C    [ raw code | output | fork ]

proch - Perl, pasted on Apr 18:
1
2
3
4
5
6
use strict;
my @prova  = (2, 3, 9, 10, 2929);

print "
 Elemento #1: $prova[4]\n
 Ma anche #1: @prova[4]\n";


Output:
1
2
3
4

 Elemento #1: 2929

 Ma anche #1: 2929


Create a new paste based on this one


Comments: