10: Immunable Keyword
Constant Keyword
contract MyContract {
uint constant tokenTotalSupply = 100;
function getTokenTotalSupply() public view returns (uint) {
return tokenTotalSupply;
}
}Introduction to the immutable Keyword
Conclusion
Last updated