Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / examples / hello-perl / hello-1.pl.in
1 #!@PERL@
2 # Example for use of GNU gettext.
3 # This file is in the public domain.
4 #
5 # Source code of the Perl program, using the Locale::Messages API.
6
7 use Locale::Messages qw (textdomain bindtextdomain gettext);
8 use POSIX qw(getpid);
9
10 binmode STDOUT, ':raw'; # Needed to make it work in UTF-8 locales in Perl-5.8.
11
12 sub _ ($) { &gettext; }
13
14 textdomain "hello-perl";
15 bindtextdomain "hello-perl", "@localedir@";
16
17 print _"Hello, world!";
18 print "\n";
19 printf _"This program is running as process number %d.", getpid();
20 print "\n";