Thread Funktionsaufruf (15 answers)
Opened by Leave- at 2010-02-11 12:29

pq
 2010-02-11 13:52
#132678 #132678
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
Code: (dl )
1
2
3
4
$ perl -wle'
my $x="23\n";
print chomp($x)'
1


edit:
deinen code auf ein paar zeilen runtergebrochen:
Code: (dl )
1
2
3
4
5
6
7
 perl -wle'
my $zufallszahl = 23;
if ($zufallszahl != chomp($eingabe = <STDIN>)) {
print "zufallszahl $zufallszahl ungleich $eingabe";
}'
23
zufallszahl 23 ungleich 23


sieht falsch aus ;-)
Last edited: 2010-02-11 13:55:43 +0100 (CET)
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Funktionsaufruf