Day of the week: Difference between revisions

no edit summary
m (→‎JS ES6: Minor tidying)
No edit summary
Line 4,153:
}
}</lang>
 
{{out}}
<pre>
2011 2016 2022 2033 2039 2044 2050 2061 2067 2072 2078 2089 2095 2101 2107 2112 2118
</pre>
 
=={{header|Visual Objects}}==
<lang visualfoxpro>
local i as dword
for i := 2008 upto 2121
if DOW(ConDate(i, 12, 25)) = 1
? AsString(i)
endif
next i
</lang>
 
{{out}}
Anonymous user