1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

Added Joseph Chow as contributor

This commit is contained in:
Nemil Dalal
2015-12-28 21:58:31 -05:00
parent 5fe25a5bd1
commit ba3d5a6feb

View File

@@ -2,7 +2,8 @@
language: Solidity language: Solidity
filename: learnSolidity.sol filename: learnSolidity.sol
contributors: contributors:
- ["Nemil Dalal", "https://www.nemil.com"] - ["Nemil Dalal", "https://www.nemil.com"]
- ["Joseph Chow", ""]
--- ---
Solidity lets you program on [Ethereum](https://www.ethereum.org/), a Solidity lets you program on [Ethereum](https://www.ethereum.org/), a
@@ -81,7 +82,7 @@ contract SimpleBank { // CamelCase
balances[msg.sender] += withdrawAmount; // to be safe balances[msg.sender] += withdrawAmount; // to be safe
} }
} }
return balances[msg.sender]; return balances[msg.sender];
} }