Monkey class name

Monkey Forums/Monkey Programming/Monkey class name

Rushino(Posted 2013) [#1]
Hi,

Can monkey class name have upper case letters ? Just to be sure cause i would reorganize my imports they are hard to understand.

EDIT: SORRY i meant filename.. not class name. :)


Jesse(Posted 2013) [#2]
Stuff like this is so easy to test. not worth the time to post it.


And yes you can.


marksibly(Posted 2013) [#3]
You can, but be careful - sometimes importing a module will work on a case-insensitive filesystem, but not on a case sensitive one. Best approach is to make sure you have your cases right everywhere, or just stick with lowercase (or upper case I guess) everywhere.


Rushino(Posted 2013) [#4]
Thanks Mark! I will keep lowercase i think.