Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. /* Before executing the code in NodeJs, write the following in your terminal:
  2. npm init
  3. npm install -g cowsay
  4. */
  5.  
  6. const cowSay = require('cowsay');
  7. console.log(cowSay.say({
  8. text : 'hello boy'
  9. }));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement