If you want to contribute to the project, you should follow these requirements:
- Be at least 14 Years old
- Have experience with Maven and Java
- Follow the Code of Conduct
- Follow the code style written there:
In order to edit the code, you should follow the following scheme. Note that everything should be documented (only the functions, not the inside) and you cannot edit only the style of the source.
/**
* Test Class
*
* @author Lorenzo Rocca
*/
public class Test {
public void testFunction(String param) {
System.out.println("Easy Code!");
}
}