# Without a schema { people: [{ name: "Jack Smith" sequence: [2 1 3 4 7 11 18 29 47] language: "zig" "hello world":| """ const std = @import("std"); pub fn main() !void { const stdout = try std.io.getStdOut(); try stdout.write("hello world\n"); } """ "is me": %true } { name: "John Doe" sequence: [2 3 5 7 11 13 17 19 23] language: "C" "hello world":| """ int puts(const char *s); int main(int argc, char *argv[]) { puts("hello world"); return 0; } """ "is me": %false }] } # With a schema people: [ name: Jack Smith sequence: [2 1 3 4 7 11 18 29 47] language: zig "hello world":| """ const std = @import("std"); pub fn main() !void { const stdout = try std.io.getStdOut(); try stdout.write("hello world\n"); } """ "is me": %true ; name: John Doe sequence: [2 3 5 7 11 13 17 19 23] language: C "hello world":| """ int puts(const char *s); int main(int argc, char *argv[]) { puts("hello world"); return 0; } """ "is me": %false ]