Adrian Sutherland
Adrian Sutherland
Hey - no drama! Panic over, and as you keep telling me, we would have been able to recover anything anyway :-) Meantime, I am fixing the build - the...
There is something not quite right with the cmake build - well this is my hypothesis - I intend to go through all the dependencies carefully
I think F0046 and F0049 look the same - in the dark and for tired eyes, I always complain in restaurants - small fonts in romantic lighting :-) On the...
Issue was with negative numbers - pushed a fix
This works ``` /* rexx */ options levelb say "result =" blah(1) return 0 blah: procedure = .string arg a = int return "Rene" ``` However this does not -...
I think this should be fixed in develop now
The issue is that ```` /* test empty say */ options levelb say "now follows an empty say:" say say "this was an empty say:" return 'string' ```` is "syntax...
I had forgotten that java main was type void!
ok /* test empty say */ options levelb say "now follows an empty say:" say say "this was an empty say:" return '123' returns 123 /* test empty say */...
I think that is what we do ``` options levelb say "hi" return '100' ``` returns 100 to the os