forked from Kibibit/achievibit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprintLogo.js
25 lines (25 loc) · 1.78 KB
/
printLogo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module.exports = function() {
var colors = require('colors');
console.log();
console.log();
console.log(' _ . .. . s'.cyan);
console.log(' .uef^" u @88> . uW8" @88> :8'.cyan);
console.log(' :d88E 88Nu. u. %8P `t888 %8P .88'.cyan);
console.log(' u . `888E .u \'88888.o888c . 8888 . . :888ooo'.cyan);
console.log(' us888u. .udR88N 888E .z8k ud8888. ^8888 8888 .@88u 9888.z88N .@88u -*8888888'.cyan);
console.log('.@88 "8888" <888\'888k 888E~?888L :888\'8888. 8888 8888 \'\'888E` 9888 888E \'\'888E` 8888'.cyan);
console.log('9888 9888 9888 \'Y" 888E 888E d888 \'88%" 8888 8888 888E 9888 888E 888E 8888'.cyan);
console.log('9888 9888 9888 888E 888E 8888.+" 8888 8888 888E 9888 888E 888E 8888'.cyan);
console.log('9888 9888 9888 888E 888E 8888L .8888b.888P 888E 9888 888E 888E .8888Lu='.cyan);
console.log('9888 9888 ?8888u../ 888E 888E \'8888c. .+ ^Y8888*"" 888& .8888 888" 888& ^%888*'.cyan);
console.log('"888*""888" "8888P\' m888N= 888> "88888% `Y" R888" `%888*%" R888" \'Y"'.cyan);
console.log(' ^Y" ^Y\' "P\' `Y" 888 "YP\' "" "` ""'.cyan);
console.log(' J88"'.cyan);
console.log(' @%'.cyan);
console.log(' :"'.cyan);
console.log();
console.log('MIT license, 2015-2016'.red);
console.log('https://github.com/Kibibit/achevibit'.red);
console.log();
console.log();
};