prompto.csharp.CSharpCharacterLiteral Maven / Gradle / Ivy
The newest version!
package prompto.csharp;
public class CSharpCharacterLiteral extends CSharpLiteral {
char value;
public CSharpCharacterLiteral(String text) {
super(text);
value = text.charAt(1);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy