Delegates: Difference between revisions

Content deleted Content added
imported>Arakov
PureFox (talk | contribs)
m →‎{{header|Wren}}: Changed to Wren S/H
Line 2,915: Line 2,915:
=={{header|Wren}}==
=={{header|Wren}}==
Wren is dynamically typed so we can plug any kind of delegate into the Delegator.
Wren is dynamically typed so we can plug any kind of delegate into the Delegator.
<syntaxhighlight lang="ecmascript">class Thingable {
<syntaxhighlight lang="wren">class Thingable {
thing { }
thing { }
}
}