I have written a solidity program in which one function has an address that I have to send tokens to. I read somewhere that to send tokens to an address, it should be declared as payable. I am not able to figure out how to do it. I tried direct casting:
address payable variable_name;
It is not working for me. Please help.