I execute the following code in GUI,
bigarray(symbol,0,10000000).append!(take('a',100000))
The result is displayed as bellow,
2019-03-14T14:43:23.375: execution was completed with exception
Failed to append data
Then I change the single quotes to double quotes as bellow,
bigarray(symbol,0,10000000).append!(take("a",100000))
The result is OK.
I remember that the single quotes (‘) and double quotes (") is the same in DolphinDB,
why does DolphinDB report an exception when executing this code?