Substring.yqls 246 B

123456789
  1. (
  2. (let config (DataSource 'config))
  3. (let res_sink (DataSink 'result))
  4. (let data (Substring (String 'abcde) (Int64 '2) (Uint64 '1)))
  5. (let world (Write! world res_sink (Key) data '('('type))))
  6. (let world (Commit! world res_sink))
  7. (return world)
  8. )