Thread Irgendeine zahl in array (36 answers)
Opened by conray at 2010-04-29 16:56

bianca
 2010-04-29 17:03
#136540 #136540
User since
2009-09-13
7016 Artikel
BenutzerIn

user image
Code (perl): (dl )
1
2
3
4
5
#!/usr/bin/perl -W
use strict;
use warnings;
@ARGV = ('sonne','wolke5','4');
if (grep {$_ =~ /^\d$/} @ARGV) { print "jaaaa" }
10 print "Hallo"
20 goto 10

View full thread Irgendeine zahl in array