6 Einträge, 1 Seite |
QuoteIch hatte nurn noch pop im Kopf (also den Befehl...), aber der macht was anderes.
1 2 3 4 5 6 7 8 9 10
#!/usr/bin/perl use warnings; use strict; my @array = ("Hallo","Hi","Tag","Guten Tag","Gute Nacht"); my $y = "Perl ist toll"; my $x = "bayern ist spiessig"; splice(@array,0,0,$y,$x); print $array[0] . $array[1];
6 Einträge, 1 Seite |