Skip to content

Instantly share code, notes, and snippets.

@suattop
Created January 2, 2019 08: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 suattop/aa4b6427150fe8dc0a7c7477a4f937dd to your computer and use it in GitHub Desktop.
Save suattop/aa4b6427150fe8dc0a7c7477a4f937dd to your computer and use it in GitHub Desktop.
Developing you first Smart Contract - variables and functions - 1.1
pragma solidity ^0.5.1;
// create contract named Hashcademy
contract Hashcademy {
string name = 'Eric';
uint level = 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment