mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
11 lines
177 B
Java
11 lines
177 B
Java
public class Shark {
|
|
private int size;
|
|
|
|
// constructor
|
|
public Shark(int size) {
|
|
this.size = size;
|
|
}
|
|
}
|
|
|
|
// initializes object
|
|
Shark erik = new Shark(25);
|