Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
皆さん、MLでの次の割り当ての違いは何ですか、
val n = 5;
と
n := 1;
The former is a declaration of a new, immutable variable. The latter is how you re-assign the value of a reference cell.