Y
Hacker News
new
|
ask
|
show
|
jobs
by
bonesss
2997 days ago
"<-" is used for assignment in F#, though variable binding is "=", so:
let mutable x = 4 // x is equal to 4 x <- 7 // x is equal to 7