Add operator for v:"key"
Created by: dvkt
This script errors on master with ldpl-temp.cpp:218:6: error: no viable overloaded operator[] for type 'ldpl_str_vector'
but works with this PR:
DATA:
v is text vector
z is number vector
PROCEDURE:
store "Bart" in v:"name"
display v:"name" crlf
store 123 in z:"header"
store 987 in z:"footer"
display z:"footer"
Adding operator overloads fixes it for me but I'm not sure if there is a better way to go from literals to strings in C++.