Content deleted Content added
Oberon features both high and low-level programming features. |
Removed superfluous semicolons (null statements). A semicolon in Oberon is used to separate statements not to terminate them. |
||
Line 68:
'''PROCEDURE''' Init* (f : Figure; if : Interface);
'''BEGIN'''
f.if := if
'''END''' Init;
'''PROCEDURE''' Draw* (f : Figure);
'''BEGIN'''
f.if.draw(f)
'''END''' Draw;
Line 100:
'''BEGIN'''
'''<span style="color: darkblue">NEW</span>'''(r);
Figures.Init(r, if)
'''END''' New;
Line 118:
if.clear := Clear;
if.mark := Mark;
if.move := Move
'''END''' Rectangles.
|