aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/mount/lib/yql/id.yqls
blob: 726ae3dcfa34b5295bd38a66c68a4d1bb8324862 (plain) (blame)
1
2
3
4
5
(
# make a opaque callable without arguments that returns given value
(let id (lambda '(x) (Apply (Callable (CallableType '() '((TypeOf x))) (lambda '() x)))))
(export id)
)