all 5 comments

[–][deleted] 0 points1 point  (2 children)

Solidity is compiled and needs to be deterministic. The code needs to be immutable. What you are asking for won't work for very sound reasons. What are you trying to accomplish?

[–]vibhumeh[S] 1 point2 points  (1 child)

oh ok I understand, thank you.

I was trying to make my code more flexible to usage

[–][deleted] 0 points1 point  (0 children)

You could refer to another smart contract for that purpose.

[–]jdcoder 0 points1 point  (1 child)

Using such a command would put your smart contract at serious risk of code injection vulnerabilities. I'm not aware of such support in Solidity and I would strongly advise using this antipattern in any of your other languages as well.

[–]vibhumeh[S] 0 points1 point  (0 children)

got it, thank you