You can separate multiple field setters with a semicolon:
let card = { anotherCard with Cost = 4; WinPoints = 5 }
You can also put fields on separate lines (without comma separators):
let card = { anotherCard with Cost = 4 WinPoints = 5 }
source share