I live in Spain and use DIGI; they give me an IPv6 address. Granted, I have only tested this through IPv6-detecting websites so I do not know how good it actually is.
The ISP itself is also reliable and cheap in my short experience with them.
Just the way it allows you to create an inmutable class in a single line already makes it way easier to read, while also saving time.
Compare Java:
public class Person {
private final String name;
private final int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
}