Numeric separator syntax: Difference between revisions

(add {{omit from |Free Pascal}})
Line 20:
<pre>
1234567 3.14159265359
</pre>
=={{header|AWK}}==
<lang AWK>
# syntax: GAWK -f NUMERIC_SEPARATOR_SYNTAX.AWK
# converted from ALGOL 68
BEGIN {
# AWK lacks numeric separators but can be simulated using white space.
a = 1 234 567
b = 3 "." 1 4159 26 5 359
print(a,b)
exit(0)
}
</lang>
{{out}}
<pre>
1234567 3.14159265359
</pre>
 
477

edits