Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > cd14cddf3b3ceaf1193157472227757a > files > 896

parrot-doc-1.6.0-1mdv2010.0.i586.rpm

# Copyright (C) 2007-2009, Parrot Foundation.
# $Id: 33_hashes.pir 40124 2009-07-16 21:36:57Z allison $

=head1 Associative Arrays

Associative arrays, also known in some places as "dictionaries" or
"hashes" are like ordered arrays except they are indexed by strings
instead of integers. Parrot has a dedicated Hash PMC, and a number of
other PMCs that implement the associative array interface as well.

Associative arryas are indexed using C<[ ]> square brackets with a
string inside them.

Ordered arrays are often homogeneous structures where all elements in
the array are of the same type. This is why Parrot has types like
"FixedIntegerArray" and "ResizableStringArray", which only contain
integers or strings respectively. Associative arrays are often
heterogeneous, where each element may be a different type.

=cut

.sub main :main

    .local pmc myhash
    myhash = new ['Hash']

    myhash['foo'] = 5
    myhash['bar'] = "Hello"

    $I0 = myhash['foo']
    print $I0
    print "\n"

    $P0 = myhash['foo']
    $S0 = typeof $P0
    say $S0

    $P1 = myhash['bar']
    $S1 = typeof $P1
    say $S1

.end

# Local Variables:
#   mode: pir
#   fill-column: 100
# End:
# vim: expandtab shiftwidth=4 ft=pir: