Structures (records)

record BoldLine() {
    public static final int lineWidth = 10;
}

var width = BoldLine.lineWidth;
//width is 10

System.out.println("width is " + width);