#Recursive structures
2 messages · Page 1 of 1 (latest)
check out the first chapter of Crafting Interpreters, its genuinely a great book but the section introducing you to parsing will answer your question
2 messages · Page 1 of 1 (latest)
Hi,
How does one represent arithmetics in Go with a recursive data structure? e.g. 1 + x * (3 * 4 + y) -z * (q + 1) + 2
Thanks.
check out the first chapter of Crafting Interpreters, its genuinely a great book but the section introducing you to parsing will answer your question