//Write your own contracts here. Currently compiles using solc v0.4.15+commit.bbb8e64f. pragma solidity ^0.4.18; contract SimpleStore { contract test { //Defining structure struct worker { string worker; string duty; uint8 renumeration; } // Creating a mapping mapping (address => worker) result; address[] public worker_result; } }
0.4.18