You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ mawk 'function a (s) { print s } BEGIN { a ("A") }'
A
$ gawk 'function a (s) { print s } BEGIN { a ("A") }'
gawk: cmd. line:1: error: function `a' called with space between name and `(',
or used as a variable or an array
The text was updated successfully, but these errors were encountered:
Looks like this is not cross-dialect
The text was updated successfully, but these errors were encountered: