????

Your IP : 216.73.216.81


Current Path : C:/opt/msys64/ucrt64/share/doc/gettext/examples/hello-gawk/
Upload File :
Current File : C:/opt/msys64/ucrt64/share/doc/gettext/examples/hello-gawk/hello.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
}