Advertisement
Guest User

Untitled

a guest
Feb 27th, 2012
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.46 KB | None | 0 0
  1. $VAR1 = {
  2.     'Melbourne' => {
  3.         'Temperature' => 'hot',
  4.         'Currency' => 'Dollar',
  5.         'Country' => 'Australia',
  6.         'Size' => 'big'
  7.     },
  8.     'Paris' => {
  9.         'Temperature' => undef,
  10.         'Currency' => 'Euro',
  11.         'Country' => 'France',
  12.         'Size' => 'big'
  13.     },
  14.     'London' => {
  15.         'Temperature' => undef,
  16.         'Currency' => 'Sterling',
  17.         'Country' => 'England',
  18.         'Size' => 'big'
  19.     }
  20. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement