mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
7 lines
81 B
Awk
7 lines
81 B
Awk
function tst () {
|
|
sum += 1
|
|
return sum
|
|
}
|
|
|
|
BEGIN { OFMT = "%.0f" ; print tst() }
|