Talk:XL (programming language)
Appearance
![]() | Computing: Software Redirect‑class Low‑importance | ||||||||||||
|
Template:Findsourcesnotice Expression reduction: That's a breaktrough!
Base Case?
// Generic function for the minimum of N item
function Min(X : ordered; ...) return ordered is
result := Min(...)
if X < result then
result := X
Where in this definition is the base case? I.e. what happens when result := Min(...)
is evaluated if ...
is empty?
-- 92.227.78.106 (talk) 08:50, 25 June 2013 (UTC)