Guest User

Untitled

a guest
Jan 5th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Oz 0.17 KB | None | 0 0
  1. declare fun {Silnia N}
  2.        if N==0 then 1 else if N<0 then 1 else
  3.                   if N>10 then {Silnia 10} else N*{Silnia N-1}
  4.                   end
  5.                    end
  6.        end
  7.     end
  8. {Show {Silnia 2-4}}
Add Comment
Please, Sign In to add comment