"git@git.app.uib.no:Anders.Tokje/lecture_code.git" did not exist on "ef38a3b4c2b761377282f364127750c183beb789"
Newer
Older
package lecture5.objects;
public class Book {
String title;
String author;
public Book(String title, String author){
this.title = title;
this.author = author;
}
public String toString(){
return String.format("%s - %s", this.title, this.author);
}
public boolean equals(Object obj){
}
}