Scope/Function names and labels: Difference between revisions

m
awk
(initial draft)
 
m (awk)
Line 3:
The task is to explain or demonstrate the levels of visibility of function names and labels within the language.
 
For levels of scope relating to visibility of variables see [[Variables]]. For scope modification facilities see [[Scope modifiers]].
For scope modification facilities see [[Scope modifiers]].
 
{{omit fromlang|GUISSAWK}}
 
In [awk] function names are always global and can be referenced in sections of code appearing before the definition:
 
<lang 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
}</lang>
 
Note that the awk extraction and reporting language is data driven and does not support arbitary line labels.
 
{{omit from|GUISS|does not have functions or labels}}
 
[[Category:Scope]]