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

6 lines
167 B
CoffeeScript
Raw Normal View History

2010-07-29 04:51:35 +00:00
weatherReport = (location) ->
2010-01-12 03:55:01 +00:00
# Make an Ajax request to fetch the weather...
[location, 72, "Mostly Sunny"]
[city, temp, forecast] = weatherReport "Berkeley, CA"