package oop.JavaGrinder.Tests;
/**
* Basic test of ints, chars, bytes, longs, shorts, floats, doubles, booleans
*/
public class PrimitiveTest {
public PrimitiveTest(){
int i = 10;
i = -73;
char c = 'c';
byte b = -100;
b = 20;
short s = 30000;
s = 0;
long l = -999999999;
l = 867;
float f = 36777;
double d = 43267.333;
boolean bo = true;
}
public static void main(){
}
}