in reply to Problems with array references and 'use strict'

Monks above mentioned why this fails. But since push can handle undefined situations, it would work if you just begin with an empty hash.
# $vectorRef = { 'time' => \(), 'data' => \() }; my $vectorRef = {};
Update: Abigail actaully had this, so this whole answer is quite useless :P.