Jump to content

Dining philosophers: Difference between revisions

→‎{{header|Oz}}: Removed unused helper function
(→‎{{header|Oz}}: Removed unused helper function)
Line 717:
catch _ then
false
end
end
 
%% Calls Fun N times and returns the result as a list.
fun {MakeN N Fun}
case N of 0 then nil
else {Fun}|{MakeN N-1 Fun}
end
end
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.