Skip to content

Instantly share code, notes, and snippets.

@lavakush-rgukt
lavakush-rgukt / .deps...remix-tests...helloworld.sol
Created April 13, 2022 09:18
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.6.12+commit.27d51765.js&optimize=false&runs=200&gist=
pragma solidity ^0.5.0;
contract helloworld {
constructor() public{
}
function print () public pure returns (string) {
return 'Hello World! First Simple Smart Contract';
}
}