Thread Aufbewahrung von Funktionen und Subroutinen (6 answers)
Opened by peterb at 2021-10-15 08:29

hlubenow
 2021-10-15 12:26
#194026 #194026
User since
2009-02-22
875 Artikel
BenutzerIn
[default_avatar]
Edit: War zu kompliziert gedacht. Nochmal.

Wenn ich darf, geb' ich nochmal ein kurzes Beispiel, wie man das machen würde:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl

use warnings;
use strict;

use mymodule;

# Main

function1();
function2();

Und:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

# mymodule.pm

use warnings;
use strict;

sub function1 {
    print "This is function 1.\n";
}

sub function2 {
    print "This is function 2.\n";
}

1;

Last edited: 2021-10-15 13:06:46 +0200 (CEST)

View full thread Aufbewahrung von Funktionen und Subroutinen