Making a Math Interpreter: Wrap Up
John Nyingi

John Nyingi @j0nimost

About: Backend Dev

Location:
Nairobi, Kenya
Joined:
Feb 22, 2017

Making a Math Interpreter: Wrap Up

Publish Date: Sep 23 '21
1 0

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 😊.

Comments 0 total

    Add comment