Should kt file names not contain whitespaces?
# getting-started
f
Should kt file names not contain whitespaces?
k
f
Thank you! What about project names?
k
I don't think there are rules about that, although in general no spaces is easier for commandline stuff.
f
one more thing
The PascalCase in Kotlin files is convenient, not a technical limitation?
because it lets me generate files with spaces
k
Yeah it's just a convention. If you use spaces in filenames there can be name collisions as they just get replaced by underscores on the JVM though.
f
thank you