Re: Anyone done anything with the Euphoria Source Code?
- Posted by tone.skoda at siol.net
Jan 19, 2002
If I had source code I would add these things (in order of importance):
1. Simplified object orientation:
A small example:
include circle.e as circle
circle circle1
circle circle2
circle1.x = 100
circle1.y = 100
circle1.radius = 10
circle2.x = 200
circle2.y = 200
circle2.radius = 50
circle1.draw ()
circle2.draw ()
Code above would draw two DIFFERENT circles.
2. Visual debugger with treeviews for sequences.
3. Structures or something similar. To atleast turn this:
point [POINT_X] = x
into this:
point.x = x
No other thing comes to mind this moment.
Feature that every routine must be before you call it is not so bad thing.
It keeps your code more organized. gotos are not needed. Maybe "continue"
statement.
|
Not Categorized, Please Help
|
|