Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
Adrock
on Aug 25, 2012
|
parent
|
context
|
favorite
| on:
The Software Engineering of Mathematica
Yes, and for completeness I'd like to point out that this doesn't just apply to the right-hand side of the equation you gave. The "=" is just syntactic sugar to let you do variable assignment using infix notation:
In[1]:= FullForm[Hold[a={1,2,3}]]
Out[1]//FullForm= Hold[Set[a,List[1,2,3]]]
scrumper
on Aug 26, 2012
[–]
Worth pointing out, thanks! I see how that works.
Join us for
AI Startup School
this June 16-17 in San Francisco!
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
In[1]:= FullForm[Hold[a={1,2,3}]]
Out[1]//FullForm= Hold[Set[a,List[1,2,3]]]