Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.24 KB

README.md

File metadata and controls

29 lines (21 loc) · 1.24 KB

Calculator With Go Lang

Project Description

In this project we are going to build a calculator which will have functionalities such as - History, Back, Clear, opening bracket “(”, closing bracket “)”, division “/”, multiplication “*”, addition “+”, subtraction “-”, equal to “=”, decimal point/dot “.”, and 0 - 9 decimal digits.

Tech Required

  • Go Lang
  • fyne.io Framework
  • TDM GCC Compiler
  • Code Editor

Design UI

Extra Features

  • Whenever we click on our “History” button we want to remove the string from the array and display it on our history.
    • How it work
      • Now inside our history function, we’ll run a reverse for loop because we want to print the last string of operation as our recent most history. Then well add the history array inside our history string.And will print each operation on a new line.

Thanks Pepcoding