Skip to content
Snippets Groups Projects
Select Git revision
  • 2e2ff8dc6adee1872c1041f6b5653cd379d1d1fb
  • master default protected
  • develop
  • 0.1.0
  • 0.0.3
  • 0.0.2
  • 0.0.1
  • 0.0.0
8 results

license.txt

Blame
  • This project is licensed under the BSD 3-Clause "New" or "Revised" License. Learn more
    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
      | _ -> ()