Advertisement
Guest User

In Emacs/Merlin/Tuareg - The second line shows an error.

a guest
Oct 28th, 2015
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.25 KB | None | 0 0
  1. let rec i3loop inx outx =
  2.  lwt exlen = Lwt_io.BE.read_int inx in
  3.  lwt buf = Lwt_io.read ~count:exlen inx in
  4.   match buf with
  5.   | "" -> Lwt_io.close inx ; Lwt_io.close outx
  6.   | s -> Lwt_io.write Lwt_io.stdout s ; parse_i3cmdstring s ; i3loop inx outx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement