Skip to content

Instantly share code, notes, and snippets.

@jimpo
Created October 24, 2016 04:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimpo/4400aabe02a5731a7ec97bd325781acb to your computer and use it in GitHub Desktop.
Save jimpo/4400aabe02a5731a7ec97bd325781acb to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.2;
contract sourceLinked {
string public sourceURL;
}
contract ExampleSourceLinked is sourceLinked {
function ExampleSourceLinked(string sourceURL_) {
sourceURL = sourceURL_;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment