Revision 804893ae
Von Moritz Bunkus vor mehr als 12 Jahren hinzugefügt
SL/SessionFile.pm | ||
---|---|---|
95 | 95 |
use SL::SessionFile; |
96 | 96 |
|
97 | 97 |
# Create a session file named "customer.csv" (relative names only) |
98 |
my $sfile = SL::SessionFile->new("customer.csv", "w");
|
|
98 |
my $sfile = SL::SessionFile->new('customer.csv', mode => 'w');
|
|
99 | 99 |
$sfile->fh->print("col1;col2;col3\n" . |
100 | 100 |
"value1;value2;value3\n"); |
101 | 101 |
$sfile->fh->close; |
Auch abrufbar als: Unified diff
POD-Doku aktualisieren
Fixt #1967.