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

10 lines
187 B
Awk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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
}