Programming Help for Oz Language
Introduction to OZ Programming Language
OZ Programming Language is a Concurrent Programming Language and Multiparadigm Programming Language. It supports declarative Programming, Object Oriented Programming and many other. It supports many platform like Unix, Linux, Microsoft Window. The Mozart Programming System is implemented of OZ.
Example of OZ Programming Language
The given example will find the factorial of a number:
{` fun lazy {Fact N} if N =< 0 then 1 else N*{Fact N-1} end end local X Y in X = {Fact 80} Y = X + 1 % the value of X is needed and fact is computed end `}