diff --git a/2024/camel_vs_snake_case/article.md b/2024/camel_vs_snake_case/article.md new file mode 100644 index 00000000..e95c37fc --- /dev/null +++ b/2024/camel_vs_snake_case/article.md @@ -0,0 +1,8 @@ +# CamelCase vs. snake_case, why coding conventions matter + +Coding conventions are like grammar rules in natural languages. Just as you should use punctuation marks, using the correct coding conventions improves readability, maintainability, and collaboration with other programmers. + +Good examples are the naming conventions for Python, to use snake_case for variables and functions, and CamelCase for classes. It is not forbidden to use another style, but using_this_style or thisStyle improves readability in incontrasttothis. + +## Authors +Laura Engist \ No newline at end of file diff --git a/2024/camel_vs_snake_case/illustration.jpg b/2024/camel_vs_snake_case/illustration.jpg new file mode 100644 index 00000000..5d90d3c6 Binary files /dev/null and b/2024/camel_vs_snake_case/illustration.jpg differ