Hi I have this issue:
L1:={"A","B"};
append (L1,1) //works fine
append (L1,"C") //does not work (bad argument type)
//seems like this inserts value of variable C instead of char "C"
//same behaviour is if I use variable that contains this string
known workaround in program is
L1(0):="C" //works fine
but if I need insert "C" to the beginning of my list,
I need to find similiar workaround for prepend function...
I need that output is exactly:
{"C","A","B"}
not like
{""C"","A","B"} or {{"C"},"A","B"}
Edited: 28 Nov 2013, 5:26 a.m. after one or more responses were posted