I keep getting a error that The value of the local variable x is not used
with this code:
package app;
public class Constructors {
public Constructors(int value){
System.out.println(value);
}
public static void main(String[] args) {
//create instances here
Constructors x = new Constructors(5839);
}
}