aboutsummaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2023-07-27 11:53:19 -0230
committerSam Anthony <sam@samanthony.xyz>2023-07-27 11:53:19 -0230
commite89fd14004291f65998b8fa6b5febc2d2fdc52d6 (patch)
tree40dda188656c8505ad6fa9aa30ebd8a4cab34e06 /main.go
parent1743ab7e7f9a38acff10fb6593dbc2e2f8c6f7ab (diff)
downloadpfc-e89fd14004291f65998b8fa6b5febc2d2fdc52d6.zip
addition operator
Diffstat (limited to 'main.go')
-rw-r--r--main.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/main.go b/main.go
index 78f4665..85766f2 100644
--- a/main.go
+++ b/main.go
@@ -7,13 +7,6 @@ import (
"github.com/charmbracelet/bubbletea"
)
-type Calculator struct {
- stack Stack
- buffer string
-}
-
-type Stack []float64
-
func main() {
if _, err := tea.NewProgram(new(UI)).Run(); err != nil {
fmt.Fprintf(os.Stderr, "%v", err)