minor code fixes

This commit is contained in:
2025-09-08 10:16:43 +09:00
parent b427a5a7b6
commit fe18991a4e
3 changed files with 33 additions and 12 deletions

View File

@ -172,10 +172,12 @@ fun c() {
##try {
printf ">>>>>>>>>>>>>>>\n"
fun j(){
(c)
}
(j)
d := ((fun (x){
printf "<<%d>>\n" x
c
}) 90)
##(j)
(d 10)
##} catch (e) {
printf "EXCEPTION: %O\n" e
@ -185,3 +187,8 @@ fun c() {
## printf "EXCEPTION-X: %O\n" e
## }
##}
## if the assigne operator is seen
## a := (fun (x) { })
## a := fun (x) { } <<--- can I support this syntax??