Skip to content

Instantly share code, notes, and snippets.

View AbdullahOmor's full-sized avatar

S.M.Abdullah Ebna Alam Omor AbdullahOmor

View GitHub Profile
@AbdullahOmor
AbdullahOmor / contract-4529821fdd.sol
Created February 9, 2026 01:30
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.31+commit.fd3a2265.js&optimize=undefined&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
contract Variables {
// State variables are stored on the blockchain.
string public text = "Hello";
uint256 public num = 123;
function doSomething() public view {
// Local variables are not saved to the blockchain.