shortened lines to 79

This commit is contained in:
uberlaufer 2016-03-10 20:53:13 +01:00
parent ac03a08bec
commit ec3800b28e

View File

@ -4,7 +4,11 @@
Contracts
##########
Contracts in Solidity are what classes are in object oriented languages. They contain persistent data in state variables and functions that can modify these variables. Calling a function on a different contract (instance) will perform an EVM function call and thus switch the context such that state variables are inaccessible.
Contracts in Solidity are what classes are in object oriented languages. They
contain persistent data in state variables and functions that can modify these
variables. Calling a function on a different contract (instance) will perform
an EVM function call and thus switch the context such that state variables are
inaccessible.
.. index:: ! contract;creation