From bc165eef85700af6de016c36997f3022d2c7cf5c Mon Sep 17 00:00:00 2001 From: Shea Frembling Date: Sat, 14 Feb 2026 19:56:12 -0600 Subject: [PATCH] remove section about const as it doesnt apply to gdscript --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 5b805e8..1bf1cdb 100644 --- a/README.md +++ b/README.md @@ -15,11 +15,6 @@ Create pull requests to merge in code ## Code Standards -Prefer `const` instead of `var` if possible - -- `const` means that the variable cannot change value, while `var` means change value -- This preference helps to keep code easier to understand and debug - Use `snake_case` for variable and function names ```gdscript