4 lines
195 B
Awk
4 lines
195 B
Awk
BEGIN {
|
|
sayhello() # Call a function with no parameters in statement context
|
|
b=squareit(3) # Obtain the return value from a function with a single parameter in first class context
|
|
}
|