Calculator
Intro:
This project is a simple calculator built using React and Go. It uses the eval() function to evaluate mathematical expressions.
The Idea:
The idea was to create a user-friendly calculator that can handle basic arithmetic operations. The calculator UI is built with React, and the backend logic is handled by Go.

Go Backend:
The backend is built using Go, which handles the evaluation of mathematical expressions using the eval() function. This ensures that the calculations are performed efficiently and accurately.

React Frontend:
The frontend is built using React, providing a responsive and interactive user interface. The calculator UI is designed to be intuitive and easy to use.

The Result:
Input any mathematical expression and get the result instantly. For example, 2 + 2 will give you 4.

Collaborative Frontend and Backend
Put Together two local servers for Go and React to communicate with each other. This was done to ensure that the frontend and backend could communicate with each other and provide a seamless user experience.
Tokenization
Tokenized the operators and operands in the mathematical expression to evaluate the expression to create a pseudo eval() function. This process ensures that the expression is parsed correctly and the calculations are performed accurately.