Contact: aviboots(AT)netvision.net.il
39,890 questions
51,819 answers
573 users
use strict; use warnings; my %dict = ("Perl" => ".pl", "Start" => 1987, "Implementation" => "c"); print %dict ## run: ## ## Perl.plImplementationcStart1987 ##
use strict; use warnings; my %dict = ("Perl" => ".pl", "Start" => 1987, "Implementation" => "c"); printf "%s %s\n", $_, $dict{$_} for sort keys %dict; ## run: ## ## Implementation c ## Perl .pl ## Start 1987 ##