All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigcustard.glide.code.language.Python Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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