add file for constantpool (#10442)

* Create ConstantPool.java

add file for constantpool

* update the module with most relevant

update the module with most relevant
This commit is contained in:
Usman Mohyuddin
2021-01-26 04:09:58 +05:00
committed by GitHub
parent 93ced9cace
commit 2ac6c37055

View File

@@ -0,0 +1,8 @@
package com.baeldung.constantpool;
public class ConstantPool {
public void sayHello() {
System.out.println("Hello World");
}
}