5 lines
62 B
Awk
5 lines
62 B
Awk
|
|
||
|
function isnumeric(x) {
|
||
|
return (length(x) && x == x+0)
|
||
|
}
|