Meaning of keyword “in” in F#
in is a hangover from F#’s OCaml roots and it specifies bound variables, which are subtly different to variable scopes. Think of variable binding as follows; You have an expression: first + ” ” + second As it stands first and second are unbound – they don’t have any fixed values – so that expression … Read more