Fixes bug in eval special form related to evaluating a string containing an atomic in string eval mode

This commit is contained in:
sloum 2022-11-25 02:38:38 +00:00
parent 39bda3b853
commit bbbb1daa6c
3 changed files with 2 additions and 2 deletions

View File

@ -625,7 +625,7 @@ func eval(exp expression, en *env) (value expression) {
value = l
}
} else {
value = eval(l[0], en)
value = eval(p.([]expression)[0], en)
}
} else {
value = item

View File

@ -18,7 +18,7 @@ import (
ln "github.com/peterh/liner"
)
const version = "1.2.9"
const version = "1.2.10"
const globalLibPath = "/usr/local/lib/slope/modules/"

0
string Normal file
View File