Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Long-running evaluations - visual feedback corrupts worksheet #161

Open
davidallsopp opened this issue Sep 25, 2013 · 0 comments
Open

Long-running evaluations - visual feedback corrupts worksheet #161

davidallsopp opened this issue Sep 25, 2013 · 0 comments

Comments

@davidallsopp
Copy link

See also #77

The following code starts running, but the visual feedback (the 'spinner' characters) that are inserted into the worksheet after a few seconds, aren't cleaned up, which results in a compile error (value | is not a member of Unit possible cause: maybe a semicolon is missing before `value |'?)

object slow {
  println("start")                         
  Thread.sleep(5000)
}

However, following the slow-running task with further console output works fine:

object slow {
  println("start")                                //> start
  Thread.sleep(5000)
  println("end")                                  //> end
}
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant