Skip to content
Snippets Groups Projects
Select Git revision
  • d897b59fe99e3e3361f0d54e09cc47561547f5e6
  • master default protected
  • johannes
  • partial_parser
  • Aloui_Dary
  • ignore_punct
  • AC
  • classifier
  • fixhelp
  • libmacaon2
  • error_predictor
  • morpho
  • ssrnn
  • tfparsing
  • silvio
  • tagger_options
  • maca_trans_frame_parser
  • alexis
  • new_config
  • tagparse
  • maca_graph_parser
21 results

take_tagger.ml

Blame
  • user avatar
    Mathux authored
    9151a419
    History
    take_tagger.ml 264 B
    exception Finish
      
    let readline () =
      let a,re,cla = Scanf.scanf "%s %s %d %s\n" (fun a b c d -> (a,b=d,c)) in
      if a="" then raise Finish
      else 
        Printf.printf "%b %d\n" re cla 
    
    let _ =
      try
        while true do
          readline ()
        done
      with
      | _ -> ()