7 lines
58 B
Awk
7 lines
58 B
Awk
|
BEGIN {
|
||
|
two = 2; three = 3;
|
||
|
print (two three) + 4;
|
||
|
}
|
||
|
|
||
|
|