以下命令有效
t = new Table(); g.V.as('id').as('properties').table(t){it.id}{it.map}
print t
以下命令有效
t = new Table();
g.V.as('id').as('properties').table(t){it.id}{it.map}; print t
以下命令不起作用
t = new Table(); g.V.as('id').as('properties').table(t){it.id}{it.map}; print t
为什么?