From fd0cda90f46579fb5159dfac3ac327b95543b361 Mon Sep 17 00:00:00 2001 From: ponce Date: Thu, 31 Jul 2014 21:24:59 +0200 Subject: [PATCH] Use cwritefln in example. --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9e42d97..ba602a6 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,11 @@ This package is registered in the dub registry as ## Usage ```d import std.stdio; -import colorize : fg; -import colorize.colorize : colorize; +import colorize; void main() { - writeln("This is blue".colorize(fg.blue)); + cwriteln("This is blue".colorize(fg.blue)); } ```