Nu Natural Language Dates

By Patrick Thomson: http://importantshock.wordpress.com/category/nu/

(global readline ([Nu Bridged Function](http://orpeth.com/Nu Bridged Function.html) functionWithName: "readline" signature: "**")) 

(puts “Press Ctrl-C to quit.”) (while 1 (set input (readline “>>>”)) (set date (NSDate dateWithNaturalLanguageString: input)) (if date (puts (date description)) (else (puts “Your input of ‘#{input’ could not be parsed. Try again!”))))

orpeth.com