Retourner au contenu associé (journal : Perl Moderne chez Pearson)
Posté par eric gerbier (site web personnel) le 17 février 2011 à 10:17. En réponse au journal Perl Moderne chez Pearson. Évalué à 10.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: fonctions
Posté par eric gerbier (site web personnel) . En réponse au journal Perl Moderne chez Pearson. Évalué à 10.
#!/usr/bin/perl
use strict;
use warnings;
sub toto($) {
my $txt = shift @_;
}
toto(1,2);
perl -cw essai.pl
Too many arguments for main::toto at essai.pl line 9, near "2)"
essai.pl had compilation errors.