Yes Peter, that will work
sys a=10,b=20
double d=a/b
print d '0,5
There was a problem with number literals and type conversion but this has now been fixed.
You can also avoid byvals everywhere by placing the type first eg:
Sub ResizeGl(long width, long height) 'byvals
Sub ResizeGl(long*width, long*height) 'byrefs
Charles