9 lines
195 B
Java
9 lines
195 B
Java
package com.powernode.spring6;
|
|
|
|
public class Test {
|
|
public static void main(String[] args) {
|
|
Employee bruce = Employee.staticTest(2,"bulusi",24);
|
|
bruce.setBoss(true);
|
|
}
|
|
}
|