Skip to content

Instantly share code, notes, and snippets.

@hlindberg
Last active September 17, 2018 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlindberg/d8a1c7f2288edba18a7713533fda8f2d to your computer and use it in GitHub Desktop.
Save hlindberg/d8a1c7f2288edba18a7713533fda8f2d to your computer and use it in GitHub Desktop.
Java Snippets
StringJoiner joiner = new StringJoiner(",");
for (Item item : list) {
joiner.add(item.toString());
}
return joiner.toString();
public static void main(String[] args) {
// Prints "Hello, World" to the terminal window.
System.out.println("Hello, World");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment