[FEATURE] Assignment of structure members
frankhart2018 opened this issue · 0 comments
frankhart2018 commented
Describe the solution you'd like
Assigning structure members using dot operator.
Example
Assuming hello struct defined and instantiated in a variable h:-
h.a_var = 1
Todo
- Identify the dot operator
- Make changes in variable assignment in parser, adding a new opcode will help.
- Compile C code according to the newly generated opcode.