vitreo12 / omni

DSL for low-level audio programming.
https://vitreo12.github.io/omni/
MIT License
188 stars 6 forks source link

struct: support calling other fields to build new ones #157

Open vitreo12 opened 3 years ago

vitreo12 commented 3 years ago
struct Something: 
    a = PI
    b = a * 3

b = a * 3 is currently not supported. Perhaps b float = a * 3 should be.