Comparison of programming languages (associative array): Difference between revisions

Content deleted Content added
Lisp: Fixed indentation of sample alist
Line 920:
<source lang="text">
$phonebook = @{
'Sally Smart' = '555-9999';
'John Doe' = '555-1212';
'J. Random Hacker' = '553-1337'
Line 947:
$tomorrow = $now.AddDays(1)
$ProcessDeletionSchedule = @{
(Get-Process notepad) = $now
(Get-Process calc) = $tomorrow
}
</source>