Introduction to Programming Environment is a subject that helps students to
build a professional environment for coding and understanding some technical
words used in everyday project development. We believe development must be an
enjoyable and creative experience to be truly fulfilling. IPE takes the pain out
of development by easing common tasks used in many projects, such as:
-
Code sharing for group project development.
-
Code versioning for keeping changes under control.
-
Code ownership by identifying who make any part of the code.
-
Task management for dividing tasks for each team member.
In order to ensure that everyone understand the subject, make sure everyone
complete every Task Practice.
The IPE TP01 is open-sourced software licensed under the MIT license.
Java code example:
public class App {
public static void main(String[] args) {
System.out.println("Welcome to IPE TP01.");
}
}View it in GitHub you will see it looks good. Then, lastly commit and push code.