22 lines
417 B
Java
22 lines
417 B
Java
package net.hypki.USOS4;
|
|
|
|
import net.hypki.USOS4.model.Faculty;
|
|
import net.hypki.USOS4.model.Person;
|
|
import net.hypki.USOS4.model.Student;
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello");
|
|
|
|
Student s = new Student();
|
|
s.setName("Jan");
|
|
s.setSurname("Kowalski");
|
|
System.out.println(s.toString());
|
|
|
|
// Person p = new Person();
|
|
Faculty f = new Faculty();
|
|
}
|
|
|
|
}
|