Commit de0e6ba2 by Francisco Giordano Committed by GitHub

Merge pull request #333 from frangio/examples

Move examples to separate directory
parents 91e5a925 a799d218
pragma solidity ^0.4.11;
import "./StandardToken.sol";
import "../token/StandardToken.sol";
/**
......@@ -12,10 +12,11 @@ import "./StandardToken.sol";
*/
contract SimpleToken is StandardToken {
string public name = "SimpleToken";
string public symbol = "SIM";
uint256 public decimals = 18;
uint256 public INITIAL_SUPPLY = 10000;
string public constant name = "SimpleToken";
string public constant symbol = "SIM";
uint256 public constant decimals = 18;
uint256 public constant INITIAL_SUPPLY = 10000;
/**
* @dev Contructor that gives msg.sender all of existing tokens.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment