
fs    = require 'fs'
log   = console.log

// ---------------------------------------------------------------------------------------------------------
read the readme = ->
  return fs.read file! 'README.md' 'utf-8'

// ---------------------------------------------------------------------------------------------------------
contents of readme = read the readme 'README.md' 'utf-8'
log ( "###\n" + contents of readme + "\n###" )




