Method: Common::Color#printf_green

Defined in:
lib/common/color.rb

#printf_green(text, bold = false, stdout = STDOUT) ⇒ Object

Print the text in green.

Author:

  • tmarmin



72
73
74
# File 'lib/common/color.rb', line 72

def printf_green(text, bold=false, stdout = STDOUT)
  printf_color(text, 32, bold, stdout)
end