github.com/qri-io/qri@v0.10.1-0.20220104210721-c771715036cb/transform/startf/testdata/tf.star (about)

     1  ds = dataset.latest()
     2  print("hello world!")
     3  ds.set_structure({ 'format': 'json', 'schema': { 'type' : 'array' }})
     4  ds.body = [[1, 1.5, False, 'a','b','c'],
     5             [2, 2.3, True,  'd','e','f'],
     6             [3, 4.7, False, 'g','h','i']]
     7  dataset.commit(ds)