Cyfrin / solidity-by-example.github.io

Solidity By Example
https://solidity-by-example.org/
MIT License
614 stars 201 forks source link

Update Array.sol #277

Closed panditdhamdhere closed 1 month ago

panditdhamdhere commented 1 month ago

In Array.sol file last function should be external pure changed

function examples() external {
        // create array in memory, only fixed size can be created
        uint256[] memory a = new uint256[](5);
    }

image