Skip to content

Instantly share code, notes, and snippets.

@sethlilly
Last active December 19, 2015 01:59
Show Gist options
  • Save sethlilly/5879826 to your computer and use it in GitHub Desktop.
Save sethlilly/5879826 to your computer and use it in GitHub Desktop.
Test Gist for embedding in blog posts
/* This is a test file.
** Create a cheese object, let the odor waft through the air,
** then decide whether to eat it.
*/
var cheddar = new Cheese();
var aroma = cheddar.waft();
// Unless it's *really* nasty, eat it.
if ( aroma != 'pungent' ) {
cheddar.consume();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment