Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    my $str = "Internal Computing Department";
    
    print join '', map {uc substr $_, 0, 1} split ' ', $str;
    
  2. or download this
    ICD