Skip to content

Instantly share code, notes, and snippets.

View MManzar786's full-sized avatar
🎯
Focusing

Muhammad Manzar Abbas MManzar786

🎯
Focusing
  • Pakistan
View GitHub Profile
@MManzar786
MManzar786 / contracts...Test.sol
Created March 5, 2022 09:16
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// pragma solidity means whick version of solidity youre using and we
// are using Solidity version gt & eq version 0.7.0 and less than 0.9.0
pragma solidity >=0.7.0 <0.9.0;
// contract is keyword for creating Contract with named as TestContract
contract TestContract {
// variable of the greeting
string private greeting;
// Initialize the greeting value to 'Hello!!'.
constructor() public {