|
|
|
|
|
by insin
5234 days ago
|
|
You could use anything which separates statements or ensures the function is treated as an expression. Two examples which are more in keeping with the intended use of the operators in question: ;function() {
// Some initialization.
}()
void function() {
// Some initialization.
}()
|
|
Why aren't we just using the semicolon as it is required in any other (C-based) language?