(e anchor href: 'http://smalltalk.gnu.org')
    image source: '/resources/gst_medium.png' alternativeText: 'abc'.

and this one throws the parse error:

e anchor href: 'http://smalltalk.gnu.org';
    image source: '/resources/gst_medium.png' alternativeText: 'abc'.

This one would work:

(e anchor
    href: 'http://smalltalk.gnu.org';
    image) source: '/resources/gst_medium.png' alternativeText: 'abc'.

Basically you cannot chain unary messages after a semicolon.

Paolo


_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to