my Perl is rusted...

This commit is contained in:
2020-11-27 14:43:55 +01:00
parent 8684520c5a
commit c6d8042995
4 changed files with 82 additions and 0 deletions

5
code/id2h.pl Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/perl -w
use strict;
use code::id2h;
TraiterLigne("ID un texte quelconque.");

8
code/id2h.pm Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/perl -w
use strict;
sub TraiterLigne($)
{
my $in = shift;
print "input: $in\n";
}
1;