Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
asciimo "roffles" Cybermedium

### node.js -
var sys = require('sys');
var util = require('util');
var asciimo = require('./lib/asciimo').Figlet;
var colors = require('./lib/colors'); // add colors for fun

Expand All @@ -29,23 +29,23 @@
var text = "hello, i am asciimo";

asciimo.write(text, font, function(art){
sys.puts(art.magenta);
util.puts(art.magenta);
var anotherFont = 'binary';
var moreText = "i turn text into leet ascii art ^_^.";

asciimo.write(moreText, anotherFont, function(art){
sys.puts(art.red);
util.puts(art.red);
var anotherFont = 'Colossal';
var moreText = "400+ fonts supported";

asciimo.write(moreText, anotherFont, function(art){
sys.puts(art.green);
util.puts(art.green);
var anotherFont = 'tinker-toy';
var moreText = "Marak Squires 2010";

asciimo.write(moreText, anotherFont, function(art){
sys.puts(art.yellow);
sys.puts('if you can\'t see the text try making your console larger'.red.underline)
util.puts(art.yellow);
util.puts('if you can\'t see the text try making your console larger'.red.underline)
});

});
Expand Down