10 Einträge, 1 Seite |
1
2
$ perl -we 'my $foo = "foo", "bar"; print $foo'
Useless use of a constant in void context at -e line 1.
Ronnie+2008-01-09 01:33:40--Beispiel:
Code: (dl )1
2$ perl -we 'my $foo = "foo", "bar"; print $foo'
Useless use of a constant in void context at -e line 1.
1
2
3
$ perl -wle 'my $foo = "foo", "bar"; print $foo'
Useless use of a constant in void context at -e line 1.
foo
styx-cc+2008-01-09 12:36:43--merci, haett ich eigentl. auch selber drauf kommen koennen *gruml
edit: ist es dann nicht verwirrend, in laengeren printanweisungen durch komma und nicht durch punkt zu trennen? ich frage, weil ich das desoefteren sehe, und davon ausgehe das die meisten der leute wissen was sie da tun..
styx-cc+2008-01-09 12:36:43--edit: ist es dann nicht verwirrend, in laengeren printanweisungen durch komma und nicht durch punkt zu trennen?
local $, = "\n"
1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/perl use strict; use warnings; print "test: ", test(),"\n"; print "test: " . test(); sub test{ my @array = (1,5); return @array; }
10 Einträge, 1 Seite |