Avatar
Home Blog
Hello there friend 👋
I'm Ryba37
public class Ryba37 {
    // Public method with personal info
    public void withInfo() {
        System.out.println("🎮 Linux enthusiast and open-source contributor");
        System.out.println("🌍 Living in Poland");
        System.out.println("🎂 15 y.o.");
        System.out.println("🛠️ Java developer");
    }

    // Entry point
    public static void main(String[] args) {
        Ryba37 me = new Ryba37();
        me.withInfo();
    }
}
src/Main.java