Skip to content

Instantly share code, notes, and snippets.

@dulichan
Last active January 29, 2016 16:04
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 dulichan/e0edeb00f88cb1afe54b to your computer and use it in GitHub Desktop.
Save dulichan/e0edeb00f88cb1afe54b to your computer and use it in GitHub Desktop.
Walk.js
var man = {
"attributes": ["Sadness", "Anger", "Happiness", "Loneliness"]
};
var walk = function(person){
while(true){
console.print("Walk of Life");
}
}
walk(man);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment