Fields of records are implicitly final, ensuring immutability.
Records promote immutability by making all their fields implicitly final, meaning they cannot be changed after initialization. This makes them perfect for representing fixed data, such as a `Currency` record with a `code` and `symbol`.