A definition for the Smart Contract.

contract ContractName{
	datatype field1 = value;
 
	// constructor function
	constructor() public {
		// code to be ran at init
	}
	
	function functionname(datatype memory arg1) public {
	}
}