corywalker / expreduce

An experimental computer algebra system written in Go
MIT License
389 stars 27 forks source link

SubValues support #156

Open darvin opened 6 years ago

darvin commented 6 years ago
In[10]:= fi[x][y]:=44 

2018/06/03 02:00:38 Trying to define an invalid lhs: fi[x][y]
exit status 1

desired

In[1]:= fi[x][y]:=44                                                            

In[2]:= SubValues[fi]                                                           

Out[2]= {HoldPattern[fi[x][y]] :> 44}