charm icon indicating copy to clipboard operation
charm copied to clipboard

idx2str does not work as expected

Open epmikida opened this issue 5 years ago • 0 comments

Printing out multiple indices at once seems to only use the value of the last index. For example, if start is 0, and end is 1:

CkPrintf("%s\n", idx2str(start)); prints out '0' CkPrintf("%s %s\n", idx2str(start), idx2str(end)); prints out '1 1'

epmikida avatar Apr 30 '20 19:04 epmikida