I don't recommend use : as new line because the code became hard to read. Try to organize your code in a way that is easy to read. Some tips: - Use commentaries to separate parts of your code. - Try to write what your code do on process that are complex. - Avoid programming in one line. Try to keep the length of each line less than 40 char to have a clear view of whats going on. ...