6
votes
How can I change the text color in the windows command prompt
On windows, you can do it easily in three ways:
require 'win32console'
puts "\e[31mHello, World!\e[0m"
Now you could extend String with a small method called …
