From 4d4b9bc68e9b6babbb5f747ae579d41375dd4f20 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Fri, 14 Oct 2016 11:02:52 +0100 Subject: [PATCH] FAQ: remove compilation section --- docs/frequently-asked-questions.rst | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index 489ad456e..e22ef3328 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -20,22 +20,9 @@ favour of Solidity is that it is statically typed and offers many advanced features like inheritance, libraries, complex user-defined types and a bytecode optimizer. -Solidity contracts can be compiled a few different ways (see below) and the -resulting output can be cut/pasted into a geth console to deploy them to the -Ethereum blockchain. - There are some `contract examples `_ by fivedogit and there should be a `test contract `_ for every single feature of Solidity. -How do I compile contracts? -=========================== - -Probably the fastest way is the `online compiler `_. - -You can also use the ``solc`` binary which comes with cpp-ethereum to compile -contracts or an emerging option is to use Mix, the IDE. - - Create and publish the most basic contract possible ===================================================