package com.dj; public class Main { public static void main(String[] args) { // SomeClass one = new SomeClass("one"); // SomeClass two = new SomeClass("two"); // SomeClass three = new SomeClass("three"); // // System.out.println(one.getInstanceNumber()); // System.out.println(two.getInstanceNumber()); // System.out.println(three.getInstanceNumber()); // //// one.instanceNumber = 4; // System.out.println(Math.PI); //// Math m = new Math(); // // int pw = 674312; // Password password = new ExtendedPassword(pw); // password.storePassword(); // // password.letMIn(1); // password.letMIn(523266); // password.letMIn(9773); // password.letMIn(0); // password.letMIn(-1); // password.letMIn(674312); System.out.println("Main method called"); SIBTest test = new SIBTest(); test.someMethod(); System.out.println("Owner is " + SIBTest.owner); } }