How can I initialize a empty tuple of iconic variables?
I am trying to do this:
concat_obj(AllStr, Str, AllStr)
AllStr is not initialized, so it throws an exception..
How can I initialize a empty tuple of iconic variables?
I am trying to do this:
concat_obj(AllStr, Str, AllStr)
AllStr is not initialized, so it throws an exception..
Copyright © 2021 Jogjafile Inc.
The object needs to be initialsed first using
gen_empty_obj(str)
The code would look like this then,