๐ The desired standard
Naming Conventions
let length = 25;
let mut my_class;// Good!
class MyClass {}
// Meh...
class MyVectorIter {} // suggestion: MyVectorIterator
// Absolutely not! ๐คฎ
// * Start's with lowercase
// * No clear word case
class _Hello_there {}๐ func print_something() {}
๐ func PrintSomething() {}Class syntax
Last updated