Hello friends,
static h := {=>}
h['mycParts'] := {"date=1900-11-21", "time=16:00"}
// Correct loop syntax for iterating over the array in the hash
FOR EACH cTmp IN h['mycParts']
? cTmp
NEXT
But when I try to use
h["cTmp"] := ""
FOR EACH h["cTmp"]IN h['mycParts']
? h["cTmp"]
NEXT
I get a syntax error.
Is there a workaround?
Best regards,
Otto