xref
: /
illumos-gate
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
gnu
/
numstr1.awk
(revision ed093b41a93e8563e6e1e5dae0768dda2a7bcc27)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
BEGIN
{
2
split
(
"1.234"
, f)
3
OFMT
=
"%.1f"
4
print
f
[
1
]
5
x
=
f
[
1
]+
0
6
print
f
[
1
]
7
}
8