string interpolation in hpp code example
Example: php string interpolation
$value = "My Value";
$value2 = 5;
$string = "The value is {$value} and the second is {$value2}";
$value = "My Value";
$value2 = 5;
$string = "The value is {$value} and the second is {$value2}";