someValue = let {f = 9; fo = 10; foo = 123 } in f+fo+foo
Edited to add that this is also OK:
someValue = let f = 9 fo = 10 foo = 123 in f+fo+foo