1 2 3 4 5 6 7 8 9 10 11
use strict ; open( my $fh , '<' , 'beispiel.txt' ) ; funktion( $fh ) ; close( $fh ) ; sub funktion { my ( $filehandle ) = @_ ; print $filehandle "Beispiel\n" ; }
2011-10-04T13:38:54 dgwCode (perl): (dl )open( my $fh , '<' , 'beispiel.txt' ) ;
open( my $fh , '>' , 'beispiel.txt' ) ;
QuoteHallo,
ich versuche gerade den format-Befehl auf ...