hyperrealm / libconfig

C/C++ library for processing configuration files
https://hyperrealm.github.io/libconfig/
GNU Lesser General Public License v2.1
1.1k stars 360 forks source link

handling the concatenation of string variables? #186

Closed ruantu closed 3 years ago

ruantu commented 3 years ago

{ x="https"; y="www.google.com"; z=$x "://" $y; } or { a="https"; b="://"; c="www.google.com"; d=$a $b $c; } The syntax is supported?