6.5 Bookmarks - Geisonszo/TecProg-Emergo GitHub Wiki

Its extremely important to use bookmarks in any part of the code that , by some reason, should be marked. This tags should be write in comment format, such as

//BAD CODE

Student student = new Student();

student.someStaticMethod;

//NO COMMENTS

JSONParser parser(Url url){

certain algorithm }

. A Bookmark is no different than a comment, but should be written in a particular form, allowing the developers to find similar bookmarks through a general search.