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