1. Re: QBasic --> Euphoria (again)
- Posted by Einar Mogen <nord.staernes at ROLLAG.MAIL.TELIA.COM> Sep 01, 1998
- 656 views
>More euphoric would be, allowing both atoms and sequences:
>
>function abs (object x)
> return x < 0 * -2 + x
>end function
That should be:
function abs(object x)
return (x < 0) * x * -2 + x
end function
----------------------------
Einar

