Create a computer algebra system

I’m trying to build a compiler for mathematical expressions with a reducing option
examples:

  1. z=2x+4-x ————→ z=x+4

  2. 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, …)

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 Books · golang/go Wiki · GitHub

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.