fork download
  1. process.stdin.resume();
  2. process.stdin.setEncoding('utf8');
  3.  
  4. var Hashtag = "", Count = 0;
  5. while (Count != 7) {
  6. Count = Count + 1;
  7. Hashtag = Hashtag + "#";
  8. console.log(Hashtag);
  9. }
  10. // your code goes here
  11.  
Success #stdin #stdout 0.13s 51088KB
stdin
Standard input is empty
stdout
#
##
###
####
#####
######
#######