This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class NotEnoughPlugins extends JavaPlugin { | |
private static final String[] PLUGIN_NAMES = { | |
"わーい!", "みゃみゃみゃみゃみゃみゃみゃあ!", "たーのしー!", | |
"まんぞく", "若干ゃ草", "へーきへーき", "やったぁ!", | |
"えっへん!", "プラグインを入れるのが得意なフレンズなんだね!", | |
"もうお友達だから!", "その手があったでござるか", "すっごーい", | |
"狩りごっこだね!", "た、食べないでくださーい!", "ちがうよ!", | |
"ジャンプ力ぅですかねぇ", "でもまあ騒ぐほどでもないか", | |
"よぉこそぉ", "ぺっ", "どうぞどうぞぉ!", "ゆっぐりしでいっでぇ!", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.function.Supplier; | |
public class Test { | |
public static void main(String...args) { | |
new If(true).then(() -> System.out.println("True")).orElse(() -> System.out.println("False")); | |
} | |
public static class If { | |