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

me.walkersneps.sneps.utils.lazy.aliases.PrintAlias Maven / Gradle / Ivy

The newest version!
package me.walkersneps.sneps.utils.lazy.aliases;

/**
 * Created by Walkersneps on 23/04/16
 * in package me.walkersneps.sneps.utils.lazy.alias
 * for SnepsUtils
 */


/**
 * @author Walkersneps
 */
public class PrintAlias {

    /**
     * Just an alias to System.out.println()
     * Just because I'm a lazy boy
     *
     * @param text parameter for System.out.println(text)
     */
    public static void eprint (String text) {
        System.out.println(text);
    }


    /**
     * Always returns true
     * @return true
     */
    public boolean hello () {
        return true;
    }




} //end of class




© 2015 - 2024 Weber Informatics LLC | Privacy Policy