We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
info:
1.4.8
the code:
import os nim> proc uuu= echo "start" sleep 1000 echo "end" nim> uuu()
result: it prints "end" immediately after printing "start"
expected behavior: it should sleep for 1s and then print "end"
The text was updated successfully, but these errors were encountered:
Confirmed.
I wonder if it is something to do with the whole line being executed and only then the output is printed?
Sorry, something went wrong.
No branches or pull requests
info:
1.4.8
the code:
result:
it prints "end" immediately after printing "start"
expected behavior:
it should sleep for 1s and then print "end"
The text was updated successfully, but these errors were encountered: