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