
com.bigcustard.glide.code.language.Python Maven / Gradle / Ivy
package com.bigcustard.glide.code.language;
import com.bigcustard.glide.language.JavascriptKeywords;
import org.apache.commons.lang3.tuple.Pair;
public class Python extends Language {
public static final String TEMPLATE =
"##################################### \n"
+ "## Welcome to GLIDE! ## \n"
+ "## Start writing your game below ## \n"
+ "## Look at Samples for inspiration ## \n"
+ "##################################### \n\n";
public Python() {
super(new JavascriptKeywords(), "py", "python-button", TEMPLATE);
}
@Override
public Pair errorChecker(String code) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy