blob: cf59f2bb0c90dfa15b96a2a63836875d0e38b551 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
(
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))
(let res_sink (DataSink 'result))
(let ct (ParseType '"(Uint32?,Uint32)->Uint32"))
(let callable (Callable ct (lambda '(x y) (Coalesce x y))))
(let world (Write! world res_sink (Key) (Apply callable (Null) (Uint32 '2)) '()))
(let world (Commit! world res_sink))
(return world)
)
|