Hi can someone help me figure why i get the
ERROR: Inserting EQUALOP
for the following code?
fun generator inchan outchan n = if n>0
then
(let
fun loop () =
val c = recv(outchan)
val _ = send (inchan, c)
in
(loop ();(generator inchan outchan (n-1)))
end)
else inchan;
You enter a
let
statement, and then define a function. However, inside that function, you seem to want to define more variables. To do this, you need anotherlet
statement. Without it, you will get a syntax error like this.Try using this instead:
Or, if you want the separate lines for more clarity:
Or maybe