Mercurial Hosting > luan
comparison website/src/diff.html.luan @ 604:b73f005f3735 0.13
table constructor now uses end_of_line as a delimiter
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 24 Nov 2015 16:29:27 -0700 |
parents | 7cc9d4a53d3b |
children | 1e4b0bc0202d |
comparison
equal
deleted
inserted
replaced
603:862d6bb8124c | 604:b73f005f3735 |
---|---|
116 | 116 |
117 <h2 heading><a name="lang">The Language</a></h2> | 117 <h2 heading><a name="lang">The Language</a></h2> |
118 | 118 |
119 <h3 heading><a name="lex">Lexical Conventions</a></h3> | 119 <h3 heading><a name="lex">Lexical Conventions</a></h3> |
120 | 120 |
121 <p>Unlike Lua, Luan generally considers the end of a line to be the end of a statement. This catches errors and encourages readability. The exception to this is in paranthesis ( <em>(...)</em>, <em>[...]</em>, and <em>{...}</em> ) where the end of line is treated as white space.</p> | 121 <p>Unlike Lua, Luan generally considers the end of a line to be the end of a statement. This catches errors and encourages readability. The exception to this is in paranthesis <em>(...)</em> where the end of line is treated as white space.</p> |
122 | 122 |
123 <p>Luan has exactly the same set of keywords as Lua and has the same other lexical conventions.</p> | 123 <p>Luan has exactly the same set of keywords as Lua and has the same other lexical conventions.</p> |
124 | 124 |
125 <h3 heading><a name="vars">Variables</a></h3> | 125 <h3 heading><a name="vars">Variables</a></h3> |
126 | 126 |