From 4c98a6a2a300014ca85f5fed3e4c8b8554981596 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Tue, 13 Nov 2018 01:23:57 +0000 Subject: [PATCH] Add LLL chapter in the documentation --- docs/index.rst | 1 + docs/lll.rst | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 docs/lll.rst diff --git a/docs/index.rst b/docs/index.rst index b60ea06da..17abf4b24 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -88,3 +88,4 @@ Contents bugs.rst contributing.rst frequently-asked-questions.rst + lll.rst diff --git a/docs/lll.rst b/docs/lll.rst new file mode 100644 index 000000000..d9409bf84 --- /dev/null +++ b/docs/lll.rst @@ -0,0 +1,14 @@ +### +LLL +### + +.. _lll: + +LLL is a low-level language for the EVM with an s-expressions syntax. + +The Solidity repository contains an LLL compiler, which shares the assembler subsystem with Solidity. +However, apart from maintaining that it still compiles, no other improvements are made to it. + +.. warning:: + + The LLL codebase is deprecated and will be removed from the Solidity repository in the future.