diff options
author | Chris Ward <chriswhward@gmail.com> | 2018-09-17 21:21:33 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-09-26 21:37:34 +0800 |
commit | d51b55c847aa75b664d260b2bb54afdefb005f9f (patch) | |
tree | df30f674f04125e2c3f45d025a0f761fe4bbf48c /docs/introduction-to-smart-contracts.rst | |
parent | 0f59284a3d606b5139f4d5ccb932d3b582854c3c (diff) | |
download | dexon-solidity-d51b55c847aa75b664d260b2bb54afdefb005f9f.tar.gz dexon-solidity-d51b55c847aa75b664d260b2bb54afdefb005f9f.tar.zst dexon-solidity-d51b55c847aa75b664d260b2bb54afdefb005f9f.zip |
Add content from old Solidity wiki
Diffstat (limited to 'docs/introduction-to-smart-contracts.rst')
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index 2d4777e8..5e841417 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -8,8 +8,9 @@ Introduction to Smart Contracts A Simple Smart Contract *********************** -Let us begin with the most basic example. It is fine if you do not understand everything -right now, we will go into more detail later. +Let us begin with a basic example that sets the value of a variable and exposes +it for other contracts to access. It is fine if you do not understand +everything right now, we will go into more detail later. Storage ======= @@ -34,7 +35,7 @@ The first line simply tells that the source code is written for Solidity version 0.4.0 or anything newer that does not break functionality (up to, but not including, version 0.5.0). This is to ensure that the contract is not compilable with a new (breaking) compiler version, where it could behave differently. -So-called pragmas are common instrutions for compilers about how to treat the +So-called pragmas are common instructions for compilers about how to treat the source code (e.g. `pragma once <https://en.wikipedia.org/wiki/Pragma_once>`_). A contract in the sense of Solidity is a collection of code (its *functions*) and |