View Greeter.sol
pragma solidity ^0.4.0; | |
contract Greeter { | |
/* Define variable greeting of the type string */ | |
string public yourName; | |
/* This runs when the contract is executed */ | |
constructor() public { | |
yourName = "World"; | |
} |