Skip to content

Instantly share code, notes, and snippets.

View ashutoshsinghparmar's full-sized avatar
🎯
Focusing

Ashutosh Singh Parmar ashutoshsinghparmar

🎯
Focusing
  • Golang Developer
  • India
  • 10:25 (UTC +05:30)
View GitHub Profile
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.7.0;
contract Cause {
string public Title;
constructor(string memory title) public
{
Title = title;
}