From d8c775fd62862aa799218e44847cfad4e5aa76d7 Mon Sep 17 00:00:00 2001 From: Marak Squires Date: Fri, 11 Jun 2010 07:18:10 -0400 Subject: [PATCH] updating docs --- ReadMe.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ReadMe.md b/ReadMe.md index 02c991e..3a2b9ac 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -2,10 +2,10 @@ var sys = require('sys'); var colors = require('colors'); - sys.puts('whats up dog'.green); - sys.puts('i cant allow you to do that dave'.italic.grey.underline + 'ill beat you with the chain'.bold.red); - var str = "I".green + " Like".yellow + " Colors!".grey; - sys.puts(str); + + sys.puts('Colors '.green + 'are '.magenta + 'fun!'.blue); + sys.puts('So '.bold + 'are'.underline + ' styles!'.italic); // styles don't work in standard Mac OS Terminal.app + sys.puts('Chains are also cool.'.bold.underline.red); // styles dont't work in standard Mac OS Terminal.app

colors and styles!