/*
 * Task 01:
 * 
 * Add types to the following field declarations, such that the declarations
 * are properly typed and can be compiled by the Java compiler
 */

package task01;

public class PrimitiveTypes {

	// INSERT TYPES BELOW
	
	public static  v1 = 7;
	
	public static  v2 = new Integer(77); 
	
	public static  v3 = true;
	
	public static  v4 = new int[30];
	
	public static  v5 = new Integer[100];
	
}
