me.walkersneps.sneps.utils.lazy.aliases.PrintAlias Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snepsutils Show documentation
Show all versions of snepsutils Show documentation
A compilation of utilities, macros and aliases for common commands
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