Skip to content

Commit

Permalink
Renamed web.js to part3.js
Browse files Browse the repository at this point in the history
  • Loading branch information
John Luo committed Jul 15, 2013
1 parent 3bb0f7e commit 61d43e8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions part3.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env node
var fs = require('fs');
var outfile = "hello.txt";
var out = "A startup is a business built to grow rapidly.\n";
fs.writeFileSync(outfile, out);
console.log("Script " + __filename + "\nWrote " + out + " To " + outfile);

0 comments on commit 61d43e8

Please sign in to comment.