bump version

This commit is contained in:
2023-11-05 13:01:50 +01:00
parent 56a4000b67
commit 5adc3b30ab
2 changed files with 1 additions and 6 deletions

View File

@@ -287,11 +287,6 @@ func (c *Calc) Eval(line string) {
}
// Execute a math function, check if it is defined just in case
//
// FIXME: add a loop over DoFuncall() for non-batch-only functions
// like + or *
//
// FIXME: use R{} as well? or even everywhere, while we're at it?
func (c *Calc) DoFuncall(funcname string) error {
var function *Funcall
if c.batch {

View File

@@ -30,7 +30,7 @@ import (
lua "github.com/yuin/gopher-lua"
)
const VERSION string = "2.0.0"
const VERSION string = "2.0.1"
const Usage string = `This is rpn, a reverse polish notation calculator cli.