TIL that ```fun `name with spaces`() {} ``` compil...
# language-proposals
v
TIL that
Copy code
fun `name with spaces`() {}
compiles into
void name with spaces();
without any mangling
👍 1