chnaged ; to ## in test programs
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-11-11 17:57:18 +09:00
parent 23610117d6
commit 41ca7a219d
2 changed files with 5 additions and 5 deletions

View File

@ -25,11 +25,11 @@
(defun ff() (return 999))
; test a normal block return
## test a normal block return
(set a (ff))
(if (/= a 999) (printf "ERROR: a must be 999\n"))
(printf "OK %d\n" a)
; return from top-level
## return from top-level
(return 10)
(printf "ERROR: this line must not be printed\n")