5 lines
219 B
Awk
5 lines
219 B
Awk
|
|
w=length("Hello, world!") # static string example
|
||
|
|
x=length("Hello," s " world!") # dynamic string example
|
||
|
|
y=length($1) # input field example
|
||
|
|
z=length(s) # variable name example
|