79265142

Date: 2024-12-09 13:30:59
Score: 1
Natty:
Report link

A simpler variant than sprintf, that works even if variables aren't using $ names - just bracket them:

gawk --posix 'BEGIN { v1="hello ";v2="world"; v3=(v1)(v2); print v3;}'
hello world
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tristan Ball