matthewpratt13 / feo-new

A novel blockchain programming language written in Rust (WIP)
GNU General Public License v3.0
1 stars 0 forks source link

Fix "<<" and ">>" parsing #103

Closed matthewpratt13 closed 1 month ago

matthewpratt13 commented 2 months ago

"<<" and ">>" should only be left / right shifts in an arithmetic expression context; otherwise, they are used to specify nested types definitions. E.g., Option<Vec<T>>.

Also, "&$" is used for references to hashes