why is a named function not an expression itself? ...
# announcements
a
why is a named function not an expression itself? I think I would want something like
Copy code
fun someBigishFunction() { 
  fun somethingImDoingOnceButClearlyNamed() { /* something */ }()
}
instead of
Copy code
fun someBigishFunction() {
  fun somethingImDoingOnceButClearlyNamed() { /* something */ }
  somethingImDoingOnceButClearlyNamed()
or
Copy code
fun someBigishFunction() {
  // comment explaining instead of clearly named function
  /* something */
If that makes any sense?