7 lines
70 B
Awk
7 lines
70 B
Awk
BEGIN {
|
|
i = 2
|
|
a[i] = 5
|
|
a[i] /= 2
|
|
printf "a[%s] = %f\n", i, a[i]
|
|
}
|