retry after rejection & new subscribe

> WalterPachl <pa...@chello.at> hat am 12.09.2022 18:11 geschrieben:
> 
>  
> H:\>rexx lf
> Version REXX-ooRexx_5.0.0(MT)_64-bit 6.05 21 Apr 2022
> Source WindowsNT COMMAND D:\t\version.rex
> 1 50 READY: 0 READY: 50 Ok
> 2 500 READY: 0 READY: 500 Ok
> 3 5000 READY: 0 READY: 5000 Ok
> 4 50000 READY: 0 READY: 50000 Ok
> 5 500000 READY: 0 READY: 500000 Ok
> 6 5000000 READY: 0 READY: 5000000 Ok
> 7 50000000 READY: 0 READY: 50000000 Ok
> 8 500000000 READY: 0 READY: 500000000 Ok
> 9 5000000000 READY: 4294967296 ERROR:0 705032704 delta 4294967296
> 
> 
> > Bertram Moshier <bertrammosh...@gmail.com> hat am 12.09.2022 18:02 
> > geschrieben:
> > 
> >  
> > Hello Erich,
> > 
> > I must apologize for not moving to object oriented Rexx, yet.  I put
> > your code into a file (e.g. charoutest.rex) and got the following
> > errors:
> > 
> > 09/12/2022 10:55:47.66 D:\Users\Bertr\Programming>charoutest
> >        *-* Compiled method UNKNOWN with scope "String"
> >      9 *-*   say e m s~description s~charOut(""~left(m))
> > s~description,      s~chars (s~chars == m)~?("Ok", "delta" m -
> > s~chars)
> > Error 97 running D:\Users\Bertr\Programming\charoutest.rex line 9:
> > Object method not found
> > Error 97.1:  Object "1" does not understand message "?"
> > 
> > The code in the charoutest.rex file is:
> > 
> > numeric digits 18
> > 
> > f = .File~new("TstCharOutLarge")
> > s = .Stream~new(f)
> > 
> > do e = 1 to 9
> >   m = 5 * 10 ** e
> >     s~open("write replace")
> >     say e m s~description s~charOut(""~left(m)) s~description,
> >       s~chars (s~chars == m)~?("Ok", "delta" m - s~chars)
> >     s~close
> > end
> > 
> > Line 9 is:  say e m s~description s~charOut(""~left(m)) s~description,
> > Line 10 is:       s~chars (s~chars == m)~?("Ok", "delta" m - s~chars)
> > 
> > What did I do wrong?
> > 
> > 
> > _______________________________________________
> > Oorexx-users mailing list
> > Oorexx-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/oorexx-users
> 
> LG
> Walter

LG
Walter


_______________________________________________
Oorexx-users mailing list
Oorexx-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-users

Reply via email to