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

com.bigcustard.glide.language.RubyKeywords Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.bigcustard.glide.language;

public class RubyKeywords implements Keywords {
    @Override
    public String[] get() {
        return new String[] {"and", "begin", "break", "case", "class", "def", "do",
                "else", "elsif", "end", "false", "for", "if", "in", "nil", "not", "or",
                "new", "rescue", "return", "self", "super", "then", "true", "unless", "while"};
    }

    @Override
    public String comment() {
        return "#";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy