otherLang`{ c = 11; d = 12; }`
// roughly becomes
child.stdin.write(`
print(json(listAttrNames(
{ c = 11; d = 12; }
)))
print(${endUuid})
`)
while (1) {
child.stdout.read() // until endUuid
}
otherLang`{ c = 11; d = 12; }`
// roughly becomes
child.stdin.write(`
print(json(listAttrNames(
{ c = 11; d = 12; }
)))
print(${endUuid})
`)
while (1) {
child.stdout.read() // until endUuid
}