Skip to content

Instantly share code, notes, and snippets.

@andrewvc
Created April 7, 2010 01:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewvc/358378 to your computer and use it in GitHub Desktop.
Save andrewvc/358378 to your computer and use it in GitHub Desktop.
//Don't do this!
var file = 'myFile.txt'; // Executes First
fs.readFile(file, function () {
sys.write("Hi"); // Executes Third
});
sys.write("BYE") //Executes Second
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment