I want to concatenate a string and int.
I tried doing
echo "abc" & 2
But it doesn't seem to work. One possible solution is to convert int to string and then do the concatenation. But the value which I have is BigInt not int. So conversion is not possible.
