문제

For example:

local A = aircraft(id:'Avro' size:[2 36] state:state(time:20 status:parked))           
in
  {Browse A}
end

I would like to convert A to string like Browse window in order to send the data to other program via pipe (serializing).

Exist any Mozart native function or any short way? Thanks for your ideas

도움이 되었습니까?

해결책

Take a look at the library function Value.toVirtualString(docs). For DepthI and WidthI you just chose some large integer value if you don't want to limit the output.

To make sure that the result is a string (not a virtual string), use VirtualString.toString.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top