diff --git a/Docs/coding guide.md b/Docs/coding guide.md new file mode 100644 index 0000000..3d42680 --- /dev/null +++ b/Docs/coding guide.md @@ -0,0 +1,13 @@ +# Formatting +# 2 Naming +## 2.1 General +Names should only include ASCII letters and digits and should never begin with a digit. + +## 2.2 Class names +Class names are written in UpperCamelCase + +## 2.3 Method names +Class names are written in lowerCamelCase. +They are often verbs describing the function of the method. + +## \ No newline at end of file