Last Friday of each month: Difference between revisions

(implementation AutoIt solution)
(→‎{{header|Groovy}}: new solution)
Line 468:
2012-12-28
</pre>
 
=={{header|Groovy}}==
Solution: Same as [[Find_last_sunday_of_each_month#Groovy|Find last Sunday of each month]]
 
Test:
<lang groovy>def ymd = { it.format('yyyy-MM-dd') }
def lastFridays = lastWeekDays.curry(Day.Fri)
lastFridays(args[0] as int).each { println (ymd(it)) }</lang>
 
Execution (Cygwin on Windows 7):
<pre>[2273] groovy lastFridays.groovy 2012</pre>
 
Output:
<pre>2012-01-27
2012-02-24
2012-03-30
2012-04-27
2012-05-25
2012-06-29
2012-07-27
2012-08-31
2012-09-28
2012-10-26
2012-11-30
2012-12-28</pre>
 
=={{header|Icon}} and {{header|Unicon}}==
Anonymous user