On this page:
const
8.6

3.4 函数

一些辅助函数,该模块已经导出了racket/functionidentity

procedure

(const a b)  a

  a : any/c
  b : any/c
重新定义const,原因在于racket/function的const并没有柯里化处理。这版本已实现全部柯里化。

Examples:
> (const 1 2)

1

> ((const 1) 2)

1