This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Programming Language Checklist | |
by Colin McMillen, Jason Reed, and Elly Jones. | |
You appear to be advocating a new: | |
[ ] functional [ ] imperative [ ] object-oriented [ ] procedural [ ] stack-based | |
[ ] "multi-paradigm" [ ] lazy [ ] eager [ ] statically-typed [ ] dynamically-typed [ ] optionally-typed | |
[ ] pure [ ] impure [ ] non-hygienic [ ] visual [ ] beginner-friendly | |
[ ] non-programmer-friendly [ ] completely incomprehensible | |
programming language. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
google.load("feeds", "1"); | |
function AtomEntry(date, text, repo) { | |
this.date = date; | |
this.text = text; | |
this.repo = repo; | |
} | |
function compareDate(a, b) { | |
if (a.date < b.date) |