Thread Fehler in Doku bei Fatal (was: Fatal) (10 answers)
Opened by Gast at 2008-12-11 11:59

Gast Gast
 2008-12-11 11:59
#117077 #117077
Hi,

nach
Code: (dl )
"</bobotic")
braucht es noch eine runde schließende Klammer.

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
 use Fatal qw/:void open close/;

        # properly checked, so no exception raised on error
        if(open(FH, "< /bogotic") {
                warn "bogo file, dude: $!";
        }

        # not checked, so error raises an exception
        close FH;

View full thread Fehler in Doku bei Fatal (was: Fatal)