
668 Followers
Modern interior design elements โข Simple forms: clean lines, geometric shapes โข Natural materials and an earthy colour palette: natural wood, leather and metals โข Uncluttered Spaces and natural light: characterised by open floor plans, which remove barriers between rooms, and lots of unadorned windows.
Pure vs View Functions in Solidity: View declares that no state will be changed. Pure declares that no state variable will be changed or read. Both of these don't cost any gas to call if they're called externally from outside the contract (but they do cost gas if called internally by another function).
Visibility Specifier in Solidity: Functions can be declared as public: any contract and account can call private: only inside the contract of the function internal: only inside contract that inherits an internal function external: only other contracts and accounts State variables can't be declared as external.
A struct is a data structure format in Solidity where variables of diverse data types can be bundled into one variable or a custom-made type. _______________________ struct name{ ย string theWord; ย ย ย uint theFigure; ย ย ย bool polar; } _______________________