Help for this page

Select Code to Download


  1. or download this
    the/article book/noun
    he/pronoun is/verb ill/adjective
    
  2. or download this
    the book article noun
    he is ill pronoun verb adjective
    
  3. or download this
    open(MYFILE, ">output.txt") or die ("can not write to file\n");
    open(INFILE, "input.txt") or die ("can not open file\n");
    ...
    foreach $token(@nums) {
    print(MYFILE "$token ");
    }