I’m trying to build a compiler for mathematical expressions with a reducing option
examples:
-
z=2x+4-x ————→ z=x+4
-
x=3 ; z=2x +4 ——→ x=3; z=10;
but still don’t know how to start with go programming language (documentations, examples to start with, …)
lutzhorn
(Lutz Horn)
2
Have Go code have you tried so far?
If you want to start Go programming, try the tour. I’ve learned Go by reading the book The Go Programming Language. More books are listen on https://github.com/golang/go/wiki/Books
system
(system)
Closed
3
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.