pragma solidity ^0.4.7;
import "remix_tests.sol"; // this import is automatically injected by Remix.
import "./ballot.sol";
contract SimpleStorage {
string storedData;
function SimpleStorage (string x) public {
storedData = x;
}
function set (string x) public {
storedData = x;
}
function get () public constant returns (string) {
return storedData;
}
}