mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 06:07:31 -04:00
6 lines
70 B
Awk
6 lines
70 B
Awk
BEGIN {
|
|
i = 2
|
|
a[i] = 5
|
|
a[i] /= 2
|
|
printf "a[%s] = %f\n", i, a[i]
|
|
}
|