Leap year: Difference between revisions

Content deleted Content added
Querfeld (talk | contribs)
→‎BQN: add
Chkas (talk | contribs)
Added Easylang
Line 1,793: Line 1,793:


<pre>true</pre>
<pre>true</pre>

=={{header|EasyLang}}==
<syntaxhighlight>
func leapyear y .
if y mod 4 = 0 and (y mod 100 <> 0 or y mod 400 = 0)
return 1
.
return 0
.
print leapyear 2000
</syntaxhighlight>


=={{header|Ela}}==
=={{header|Ela}}==