RosettaCodeData/Task/Scope-Function-names-and-labels/AWK/scope-function-names-and-labels.awk
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

9 lines
187 B
Awk

# This program outputs a greeting
BEGIN {
sayhello() # Call the function defined below
exit
}
function sayhello {
print "Hello World!" # Outputs a message to the terminal
}