Skip to content

Instantly share code, notes, and snippets.

@Yoplitein
Created January 22, 2022 04:41
Show Gist options
  • Save Yoplitein/caafa16a47433d2b0d44b031768db627 to your computer and use it in GitHub Desktop.
Save Yoplitein/caafa16a47433d2b0d44b031768db627 to your computer and use it in GitHub Desktop.
Scratchpad shortcut for System.out.printf
static void writefln(String fmt, Object... args)
{
System.out.println(
args.length == 0 ?
fmt :
String.format(fmt, args)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment