Skip to content
Snippets Groups Projects
Book.java 267 B
Newer Older
Martin Vatshelle's avatar
Martin Vatshelle committed
package lecture5.objects;

public class Book {
	//feltvariabler
	String title;
	String author;
	
	public Book(String title, String author){
		this.title = title;
		this.author = author;
	}
	
	@Override
	public String toString() {
		return title+" by "+author;
	}
	
}