You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RobertTheGrey edited this page Jan 12, 2013
·
1 revision
<set>
Assigns an expression to a variable.
<setx="a" y="b" />
Results in C#:
x=a;y=b;
This is arguably the least interesting element in the entire Spark library. But if it wasn't there you'd probably have to escape assignments into code fragments like #x = a;. So there you go.