编辑代码
Racket代码
6.11
运行
#lang racket
;固定输出
(define
(f
x)
1
)
(f
2
)
(define
(g
x
y)
(+
1
2
))
(g
2
2
)