Skip to content

Commit

Permalink
Add HelloWorld impl
Browse files Browse the repository at this point in the history
  • Loading branch information
yadicksonbasedos committed May 8, 2018
1 parent 0ced066 commit d2879d3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions contracts/HelloWorldImpl.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
pragma solidity ^0.4.23;

import "./HelloWorld.sol";


contract HelloWorldImpl is HelloWorld {

string constant MESSAGE = "Hello World";

constructor() public {

}

function render() public view returns(string) {
return MESSAGE;
}

}

0 comments on commit d2879d3

Please sign in to comment.