¿En Perl cómo creo un hash en el cual las llaves vienen de un array?
AUTOR PREGUNTA #1
¿En Perl como se puede hacer un Hash donde las llaves salen de un array? Imagino que me entendeis.
Gracias.
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
%hash = map { $_ => 1 } @array;