Template:Nasal Anonymous Func
Appearance
#this declares an anonymous/unnamed function
(func(arg...)
{
#function body
})(); # this will directly invoke the unnamed function
#this declares an anonymous/unnamed function
(func(arg...)
{
#function body
})(); # this will directly invoke the unnamed function