Ghadeer Alkubais
Ghadeer Alkubais
I like the other idea more I will do my best Thanks
I used this method to get the first char of the string which is the only one and it worked ```.ml val get : string -> int -> char ```...
Read and write!
Perfect! Thank you for your reply. It is absolutely appreciated So are you saying I can use these _read and write_ functions from external.ml? is that the right one? https://github.com/ocaml/ocamlbuild/blob/master/testsuite/external.ml...
I see that external.ml exist in eff/_build/src/runtime But it gives a parse error when I use it
I am guessing I should do something like external ( < ) : 'a -> 'a -> bool = "
Thanks a lot! I will try it and let you know
That worked! Thank you so much I appreciate your help I will work now to add write_to_file and also read_line
This is my implementation of write_to_file I added this effect to `pervasives.eff` ``` .ml effect Write_file : string * string -> unit ``` I added these two to `src/runtime/value.mli` ```.ml...
Alright! This is working now!!!! First I added in_channel and out_channel as types to `src/utils/const.ml` ``` .ml type t = | In_channel of in_channel | Out_channel of out_channel let of_in_channel...