jashkenas--coffeescript/documentation/coffee/multiple_return_values.coffee

5 lines
166 B
CoffeeScript
Raw Normal View History

weather_report: (location) ->
2010-01-12 03:55:01 +00:00
# Make an Ajax request to fetch the weather...
[location, 72, "Mostly Sunny"]
2010-01-25 05:14:00 +00:00
[city, temp, forecast]: weather_report "Berkeley, CA"