Ruby
ruby
Articles on Ruby
-
Debugging to stdout with Ruby 1.9.2p0
Turns out with Ruby 1.9.2 I needed to do
$stdout.flushafter everyputs, or do$stdout.sync = truewhich should be the default behaviour. This is not an issue in other versions of Ruby.Read more on my horrendous experience trying to get ruby to write to stdout