What does an associative array look like after HipHop PHP converts it to C++?
I was hoping someone that already compiled HipHop can tell me what this would look like:
$myAssoc = array('key'=>'value');
$myAssoc = array();
$myAssoc['key'] = 'value';