!747
!pcall

m {
  p {
    for (DialogIO vm : talkToAllVMs()) {
      pcall {
        int vmPort = vm.getPort();
        S injections = vm.ask("get injections");
        print("VM " + vmPort + " injections: " + injections);
        O o = safeUnstructure(injections);
        print("Restructured: " + structure(o));
      }
      vm.close();
    }
  }
}