RosettaCodeData/Task/Scope-Function-names-and-labels/AWK/scope-function-names-and-labels.awk

10 lines
187 B
Awk
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
# This program outputs a greeting
BEGIN {
sayhello() # Call the function defined below
exit
}
function sayhello {
print "Hello World!" # Outputs a message to the terminal
}