Playground for playing with streams in Java.
Data is taken from the REST Countries API from here.
Usage:
$ mvn compile jshell:run
jshell> import countries.*;
jshell> List<Country> countries = new CountryRepository().getAll(); // The list of all countries
Building and running the project requires JDK 17 or later.