comparison website/src/diff.html @ 372:f08cefa4594c

start editing manual
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 17 Apr 2015 07:58:20 -0600
parents 7999601586b1
children
comparison
equal deleted inserted replaced
371:e01cddba3433 372:f08cefa4594c
18 <div><small><a href="/">Luan</a></small></div> 18 <div><small><a href="/">Luan</a></small></div>
19 <h1>How Luan differs from Lua</h1> 19 <h1>How Luan differs from Lua</h1>
20 20
21 <p>This document explains how Luan differs from <a href="http://www.lua.org">Lua</a> as described in the <a href="http://www.lua.org/manual/5.3/">Lua 5.3 Reference Manual</a>.</p> 21 <p>This document explains how Luan differs from <a href="http://www.lua.org">Lua</a> as described in the <a href="http://www.lua.org/manual/5.3/">Lua 5.3 Reference Manual</a>.</p>
22 22
23 <h2 margin-top="1em">Contents</h2> 23 <hr/>
24
25 <h2>Contents</h2>
24 26
25 <div margin-bottom="1em"><a href="#intro">Introduction</a></div> 27 <div margin-bottom="1em"><a href="#intro">Introduction</a></div>
26 28
27 <div margin-bottom="1em"> 29 <div margin-bottom="1em">
28 <a href="#basic">Basic Concepts</a> 30 <a href="#basic">Basic Concepts</a>
59 </ul> 61 </ul>
60 </li> 62 </li>
61 </ul> 63 </ul>
62 </div> 64 </div>
63 65
66 <hr/>
67
64 <h2 margin-top="1em"><a name="intro">Introduction</a></h2> 68 <h2 margin-top="1em"><a name="intro">Introduction</a></h2>
65 69
66 <p>Lua is one of the simplest languages available, but Luan is even simpler. This means Luan removes more than it adds. Most of what is added is added in the library, not in the language itself.</p> 70 <p>Lua is one of the simplest languages available, but Luan is even simpler. This means Luan removes more than it adds. Most of what is added is added in the library, not in the language itself.</p>
67 71
68 <p>Luan is implemented in Java and is tightly integrated with Java. This makes it an excellent scripting language for Java.</p> 72 <p>Luan is implemented in Java and is tightly integrated with Java. This makes it an excellent scripting language for Java.</p>