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
This might be a little bit difficult, since, until now, most calls done inside of a REPL are pure values, which need to be logShowed.
On the other hand, running quickCheck is an effectful computation, which we generally do using the TEST button.
My idea is to use the TEST button to poll both the editor code and the input. In the event that there is input, that computation should be fed directly into the main without a logShow.
This seems to be the simplest way of handling this.
The text was updated successfully, but these errors were encountered:
This might be a little bit difficult, since, until now, most calls done inside of a REPL are pure values, which need to be
logShow
ed.On the other hand, running
quickCheck
is an effectful computation, which we generally do using theTEST
button.My idea is to use the
TEST
button to poll both the editor code and the input. In the event that there is input, that computation should be fed directly into the main without alogShow
.This seems to be the simplest way of handling this.
The text was updated successfully, but these errors were encountered: