From e5fbc71a204fc93eee27531624391108fb748b96 Mon Sep 17 00:00:00 2001 From: Marak Squires Date: Fri, 11 Jun 2010 08:54:08 -0400 Subject: [PATCH] updated readme --- ReadMe.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ReadMe.md b/ReadMe.md index 21e33a2..12fc6f4 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -5,6 +5,9 @@ var sys = require('sys'); var colors = require('./colors'); + sys.puts('hello'.green); // outputs green text + + // from the example.js file sys.puts('C'.yellow+'o'.red+'l'.grey+'o'.cyan+'r'.magenta+'s'.magenta+' are '.green + 'fun!'.yellow); sys.puts('C'.yellow+'o'.red+'l'.grey+'o'.cyan+'r'.magenta+'s'.magenta+' are '.green + 'fun!'.yellow); sys.puts('So '.italic + 'are'.underline + ' styles! '.bold + 'inverse'.inverse); // styles not widely supported