We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This doesn't compile (undefined: f):
undefined: f
f := func() { f() }
I don't see why it shouldn't.
This compiles:
var f func() f = func() { f() }
This doesn't, again:
var f = func() { f() }
This doesn't compile (
undefined: f):I don't see why it shouldn't.
This compiles:
This doesn't, again: