+ 1
How to solve syntaxe error
Solving game errors in my game
3 Answers
+ 6
Piet Seleme ,
without having seen your code we can not give any help. please also write down the error message.
to see what issue you have, you should link your code here, doing these steps:
https://code.sololearn.com/cQquucjSHo6c/?ref=app
+ 3
Please post your code, so we can help. You can import code using "+".
Every error give you explanation, but to understand it you need to have experience. So with more code you type, and more errors you get you will read them much easier and also solve bugs faster.
+ 3
Another tip: use an IDE (integrated development environment) to write your code, it will highlight any possible syntax errors as you type in your code, so you can notice and fix them before they even happen.
IDE can help prevent other type of issues, "code smells" and semantic errors, it can give suggestions how to improve your code quality, and it can help with refactoring (changing portions of your code so that it remains consistent).