Help for this page

Select Code to Download


  1. or download this
    my %function = (
      allergies => sub { print "in allergies\n" },
      immunizations => sub { print "in immunizations\n" },
    );
    ...
    $function{$file}->() if exists $function{$file};