+ 1
What's your guys programming style? Write clean code or just name the variables you like
for example if you declare a variable, would you name it clearly even the program just only written by you, or you just named it in causal? The clean code mean: bool playingSoloLearnNow = true; v.s. you name it causal: bool p = true;
2 Answers
+ 8
I always do clean code.
I've been working on a game alone on c# for fun and to learn Unity.
Trust me, if I did:
int a, b, c;
I think I'd have a nervous breakdown đ
. You really cannot keep track of what those are for any decently sized project. Especially if you take a break from working on the project.
+ 3
Yes, clean code is really important.