Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 595 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 595 Bytes

Git/GitHub Practice

This repo has various branches and commit combinations to demonstrate wide variety of Git and GitHub functionaries.

Essentials

  • Git Bash 2.3 or above

Demo Code

public class Cat {
    private String name;
    private int age;
    private float weight;

    public Cat(String name, int age, float weight) {
        this.name = name;
        this.age = age;
        this.weight = weight;
    }

    public getName() {
        return name;
    }

    public getAge() {
        return age;
    }

    pubilc getWeight() {
        return weight;
    }

}