Putting the function declaration inside parens creates an expression which returns evaluates to the anonymous function within. Therefore, the first parenthical parenthetical evaluates to a functionpointer.
The "empty parens" at the end call invoke the defined function, so "//do cool stuff" executes immediately.
This is a way to execute code on-the-fly while also keeping variables out of the global scope.
What is illustrated here, however, has nothing to do with closures - at least not directly. Closures are about maintaining a lexical scope after a parent function has already exited.
