mirror of
https://https.git.savannah.gnu.org/git/gettext.git
synced 2026-01-31 03:45:49 +00:00
15 lines
304 B
Awk
15 lines
304 B
Awk
#!@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
|
|
}
|