mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
5 lines
123 B
Awk
5 lines
123 B
Awk
function returns_a_str() { print "<in function>" ; return "'A STRING'" }
|
|
BEGIN {
|
|
print "partial line:", returns_a_str()
|
|
}
|