Skip to content

Instantly share code, notes, and snippets.

@ajb413
Created February 5, 2020 22:10
Show Gist options
  • Save ajb413/af7945b2c681a5d18e1ea863d4b62b55 to your computer and use it in GitHub Desktop.
Save ajb413/af7945b2c681a5d18e1ea863d4b62b55 to your computer and use it in GitHub Desktop.
A basic smart contract for Ethereum written in the Solidity programming language.
pragma solidity ^0.5.12;
contract FirstContract {
function getInteger() public pure returns (uint) {
return 123;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment