1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
## This is a test of properly translating host to guest paths during JSON serialization. version 1.3 struct Foo { File file } task test { input { Foo foo } command <<< cat "~{write_json(foo)}" >>> output { Foo out = read_json(stdout()) } }