Table of Contents

Lesson 1

Introduction to Java environment and lab tools.

Objectives

Documentation

Exercises

Exercise 1

git clone https://bitbucket.org/{replace-with-your}.git 

Exercise 2

git add . 
git commit -m "Some comment."
git push

Exercise 3

Open an IDE (NetBeans, Eclipse of Intellij) and create a new project. Set as root folder for the project folder lab1 created in previous exercise.

Add a main class in the project and execute it.

Note When

package popescu.adrian.lab1.ex3;
 
public class HelloWorld {
 
    public static void main(String[] args) {
        // Prints "Hello, World" to the terminal window.
        System.out.println("Hello, World");
    }
 
}

Exercise 4

  1. Save changes to local repository
  2. Push changes to remote repository