Skip to content

Instantly share code, notes, and snippets.

View shahabvshahabi1996's full-sized avatar
🎯
Focusing

Alireza Shahabi shahabvshahabi1996

🎯
Focusing
View GitHub Profile
@shahabvshahabi1996
shahabvshahabi1996 / myFirstContract.sol
Created January 25, 2018 22:05 — forked from anonymous/myFirstContract.sol
Created using browser-solidity: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://ethereum.github.io/browser-solidity/#version=soljson-v0.4.19+commit.c4cbbb05.js&optimize=false&gist=
pragma solidity ^0.4.0;
contract Bank {
uint private value;
function Bank(uint amount) public{
value = amount;
}
function deposite(uint amount) public{