1 2 3 4 5 6 7 8 9
| public class PengDebugger { private String name = "Peng::Debug"; private String[] skills = {"Java", "Rust", "DDD", "Microservice", "Database", "TypeScripts", "React", "DevOps",}; private String mission = "Forging elegant code, one byte at a time"; public void introduce() { System.out.println("Hello, World! 👋"); } }
|