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
ddollar edited this page Jun 1, 2012
·
13 revisions
If you are not seeing any output from your program, there is a likely chance that it is buffering stdout. Manu languages such as Ruby and Python buffer stdout by default. To disable this behavior, add this code as early as possible in your program:
Ruby
Add $stdout.sync = true to your code, as high as possible in the execution path.