Skip to content

Instantly share code, notes, and snippets.

View Bhuvan53's full-sized avatar
💭
" Eagerly waiting for the new tomorrow… "

Bhuvan Bhuvan53

💭
" Eagerly waiting for the new tomorrow… "
View GitHub Profile
@Bhuvan53
Bhuvan53 / Que1.sol
Created November 19, 2025 07:39
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.15+commit.e14f2714.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
contract ExampleStrings {
uint public myUint = 1;
function setMyuint(uint _myUint) public {
myUint = _myUint;
}