-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
(define (func x)
(if (and
(or
(and (> x 10) (< x 20))
(and (< x -10) (> x -20))
)
(and (not (= x 15)) (not (= x -15)))
)
10000
-10000
)
)
;Value: func
(func 11)
;Value: 10000
(func 20)
;Value: -10000
(func -11)
;Value: 10000
(func 15)
;Value: -10000
(func -15)
;Value: -10000
以上代码带注释的时候无法执行,去掉所有注释之后就正常了。
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels