Created
July 13, 2010 22:33
-
-
Save jlogsdon/474663 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require 'src/Color.php'; | |
echo Console\Color::ize('Can we #{color}.red #{me}.yellow #{silly}.green up in this') . "\n"; | |
echo Console\Color::ize('Can we #{color}.red(green,bright) #{me}.yellow #{silly}.green up in this') . "\n"; | |
echo Console\Color::ize('Can we #{color | |
something that spans | |
many lines of text}.red(bright) #{me}.yellow #{silly}.green up in this') . "\n"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment