Commit 11951cfd by Patryk Czarnik

Klasa Osoba - początek

parent 3259ce39
package p10_klasy.v1;
class Osoba {
}
package p10_klasy.v1;
class Przyklad1 {
public static void main(String[] args) {
Osoba a = new Osoba();
System.out.println(a);
System.out.println(a.getClass());
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment