Style Guide
Contents
Style Guide#
Naming Conventions#
use snake_case not camelCase for variable and function names
variables should be lowercase
upper case are used for constants
PI = 3.14UpperCamelCase for class names
__private__double underscore is convention that means you are not supposed access this variable directly. They are by convention like private variables in other languages.