11 lines
186 B
Text
11 lines
186 B
Text
using .Delegates
|
|
|
|
a = Delegator(nothing)
|
|
b = Delegator("string")
|
|
|
|
d = Delegate()
|
|
c = Delegator(d)
|
|
|
|
@show Delegates.operation(a)
|
|
@show Delegates.operation(b)
|
|
@show Delegates.operation(c)
|