﻿readFile("example.txt", function(err, contents) {
   if (err) {
      throw err;
   }
   console.log(contents);
});
console.log("Hi!");