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 de4c624e7e
commit e8569d56b0
1 changed files with 8 additions and 0 deletions

View File

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