Skip to content

Instantly share code, notes, and snippets.

View escaper01's full-sized avatar
🎯
Focusing

escaper escaper01

🎯
Focusing
View GitHub Profile
@escaper01
escaper01 / Gists...Basics001.sol
Created January 22, 2022 09:51
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.0+commit.c7dfd78e.js&optimize=false&runs=200&gist=
pragma solidity ^0.6.0;
contract MyContract {
// state variable
/*
//number
int public myInt = 1;
uint public myUint = 1;
int256 public myInt256 = 1;