-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
34 lines (31 loc) · 1011 Bytes
/
Main.java
File metadata and controls
34 lines (31 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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);
}
}