package com.cb;
import java.util.Set;

public class Impl {
    public static void main(String[] args) {
        //Immutable
        Set set = Set.of(1, 2, 3, 4, 5); // [1, 2, 3, 4, 5]
        System.out.println(set);
    }
}