DEV Community

Cover image for Making a Math Interpreter: Wrap Up
John Nyingi
John Nyingi

Posted on

Making a Math Interpreter: Wrap Up

Resources

  • Find the Github link here

Travis-CI

Let's add .travis.yml file add the following content.

language: csharp
dist: xenial
dotnet: 3.1
solution: calcy.sln
script:
  - dotnet build
  - dotnet test
Enter fullscreen mode Exit fullscreen mode

Sign in to Travis and use this documentation to set up travis for github.

Final Comments

We have successfully made a Math Interpreter. I hope you have gained something from this series. Going forward you can now add other features like;

  • Add Math Power
  • Add Support for Exponential Numbers
  • Add Square root

Thank you for making time to follow this series, until next time KEEP HACKING 😊.

Top comments (0)