You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 13, 2021. It is now read-only.
valcoeval=Coeval {
println("Effect!")
1+1
}
// Nothing happens until this point:
coeval.value
//=> Effect!// res: Int = 2
If I delete the comment at the end, then the compilation goes through. Here's the actual error:
[tut] *** Error reported at .../monix.io/_tut/docs/2x/eval/coeval.md:139: incomplete input in code block, missing brace or paren?
Note: I prefer to add my own output comments — as I don't like tut's output and that's perfectly valid Scala code. Until this is solved, I'm stuck with Tut 0.6.3.
It's valid Scala code but as far as the REPL is concerned it's incomplete because it doesn't end with an expression. I guess we could add a flag that suppresses this check?
Monix.io fails compilation starting with Tut 0.6.4.
Probably related to this:
Here's a sample that is failing:
If I delete the comment at the end, then the compilation goes through. Here's the actual error:
Note: I prefer to add my own output comments — as I don't like tut's output and that's perfectly valid Scala code. Until this is solved, I'm stuck with Tut 0.6.3.
/cc @felixmulder @ceedubs
The text was updated successfully, but these errors were encountered: