package com.example.generic;

public class TestGen {

	public static void main(String[] args) {
		// create object Gen to handle integers
		Gen<Integer> iOb = new Gen<Integer>(88);
		iOb.showType();

		// create another object Gen to handle text
		Gen<String> sOb = new Gen<String>("hello");
		sOb.showType();
	}

}
