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