Hello friends,
 
I now install mozart-1.3.2.20080124.exe, already try with the 1.4.0 version and 
it show the "dont send windows", (like I said I'm using windows), I try this:
 
declare F R Res
%  Wrap the target code in a functor
F = functor
       export result:Result
       define 
           fun {Fact X}
               if X < 2 then 1 else X * {Fact X-1} end
           end
           Result = {Fact 20}
    end
%  Spawn a new Mozart instance on the remote machine
R = {New Remote.manager init(host:'localhost' fork:rsh)}
%  Have it execute the functor, and print the result
Res = {R apply(F $)}
{System.showInfo Res.result}
 
And get this error:
%****************** Error: remote module manager ****************
%**
%** remote(cannotCreate <O: ManagerProxy> localhost)
%**
%** Call Stack:
%** procedure 'ManagerProxy,init' in file 
"f:/cygwin/home/Administrator/Mozart-1-3-2/mozart/share/lib/dp/Remote.oz", line 
138, column 6, PC = 19511160
%**--------------------------------------------------------------
Do any of you know why it do that, thanks.
 
_________________________________________________________________________________
mozart-users mailing list                               
[email protected]
http://www.mozart-oz.org/mailman/listinfo/mozart-users

Reply via email to