public class Proverb<A> {
	private final A msg;
	
	public Proverb(A msg0) {
		this.msg = msg0;
	}
	
	public A getMsg() {
		return this.msg;
	}
}
