forked from JavaTX/JavaCompilerCore
6 lines
193 B
Java
Executable File
6 lines
193 B
Java
Executable File
public class TestConstants {
|
|
public final static Boolean B = true;
|
|
public final static Integer I = 1;
|
|
public final static Character C = 'A';
|
|
public final static String S = "Hello World!";
|
|
} |