Ok i'm a newbie at java got everything to compile but it won't do any of the println statements when i execute it, and help would be appreciated
class Hashtable {
public long[] hash;
public static void main (String [] args){
Hashtable h = new Hashtable();
}
public Hashtable Hashtable(){
long[] hash = new long[6000];
hash[0] = 55;
int i = 0;
for (i = 0; i< 6000; i++){
System.out.println(hash[ i ]);}
return Hashtable();
}
}
class Hashtable {
public long[] hash;
public static void main (String [] args){
Hashtable h = new Hashtable();
}
public Hashtable Hashtable(){
long[] hash = new long[6000];
hash[0] = 55;
int i = 0;
for (i = 0; i< 6000; i++){
System.out.println(hash[ i ]);}
return Hashtable();
}
}