Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
            return join "", map $list->[$_], @choice;
        }
    }
    
  2. or download this
    #!/usr/bin/python
    
    ...
                word.append(letter)
    
            print digits, ":", ''.join(word)
    
  3. or download this
    #!/usr/bin/pugs
    
    ...
            return @choice.map({$list[$_]}).join("");
        };
    }