Code has been added to clipboard!
Solidity Layout Example
Example
pragma solidity ^0.4.1;
contract Cont {
struct structType { uint var1; uint var2; }
uint var3;
mapping(uint => mapping(uint => structType)) data;
}
Code has been added to clipboard!
pragma solidity ^0.4.1;
contract Cont {
struct structType { uint var1; uint var2; }
uint var3;
mapping(uint => mapping(uint => structType)) data;
}