In FictoScript, the statement `bind x := 42` followed by `bind x := 99` results in which outcome?
-
A
x holds 99 because the second bind overwrites the first
-
B
A compile error because bind is immutable once assigned
-
C
x holds 42 because the first bind takes precedence
-
D
Both values are stored and x returns a list [42, 99]