diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2023-07-23 12:24:32 -0230 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2023-07-23 12:24:32 -0230 |
| commit | 3951f8c09b3f49253cf0d354df708069223d0316 (patch) | |
| tree | 6392fad888bfde768008c83b58dd1575f6c87f9f /main.go | |
| parent | 4a585fba1ac08cd9f184627a4a8b781d0b52efcb (diff) | |
| download | pfc-3951f8c09b3f49253cf0d354df708069223d0316.zip | |
constant and function parsing skeleton
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -7,14 +7,12 @@ import ( "github.com/charmbracelet/bubbletea" ) -// Types - type Calculator struct { - stack []float64 + stack Stack buffer string } -// Function Definitions +type Stack []float64 func main() { if _, err := tea.NewProgram(new(UI)).Run(); err != nil { |