Skip to content

Instantly share code, notes, and snippets.

@mcupak
Created November 7, 2017 00:44
Show Gist options
  • Select an option

  • Save mcupak/38d1babae472c6a057d435bc69280b56 to your computer and use it in GitHub Desktop.

Select an option

Save mcupak/38d1babae472c6a057d435bc69280b56 to your computer and use it in GitHub Desktop.
jshell> List<String> list = Collections.unmodifiableList(new ArrayList<String>() {{ add("a"); add("b"); add("c"); }});
list ==> [a, b, c]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment