File size: 304 Bytes
fa85b49 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!@GAWK@ -f
# Example for use of GNU gettext.
# This file is in the public domain.
#
# Source code of the GNU awk program.
BEGIN {
TEXTDOMAIN = "hello-gawk"
bindtextdomain ("@localedir@")
print _"Hello, world!"
printf _"This program is running as process number %d.", PROCINFO["pid"]
print
}
|