Mercurial Hosting > luan
comparison website/src/diff.html.luan @ 686:33f1b4ad2c9d
more documentation fixes
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 17 Apr 2016 16:39:28 -0600 |
parents | 1e4b0bc0202d |
children | ca169567ce07 |
comparison
equal
deleted
inserted
replaced
685:1e4b0bc0202d | 686:33f1b4ad2c9d |
---|---|
57 <ul> | 57 <ul> |
58 <li><a href="#conversions">Coercions and Conversions</a></li> | 58 <li><a href="#conversions">Coercions and Conversions</a></li> |
59 <li><a href="#bit">Bitwise Operators</a></li> | 59 <li><a href="#bit">Bitwise Operators</a></li> |
60 <li><a href="#logical_ops">Logical Operators</a></li> | 60 <li><a href="#logical_ops">Logical Operators</a></li> |
61 <li><a href="#concatenation">Concatenation</a></li> | 61 <li><a href="#concatenation">Concatenation</a></li> |
62 <li><a href="#constructors">Table Constructors</a></li> | |
62 <li><a href="#fn_calls">Function Calls</a></li> | 63 <li><a href="#fn_calls">Function Calls</a></li> |
63 <li><a href="#template_expr">Template Expressions</a></li> | 64 <li><a href="#template_expr">Template Expressions</a></li> |
64 </ul> | 65 </ul> |
65 </li> | 66 </li> |
66 </ul> | 67 </ul> |
195 | 196 |
196 <h4 heading><a name="concatenation">Concatenation</a></h4> | 197 <h4 heading><a name="concatenation">Concatenation</a></h4> |
197 | 198 |
198 <p>Unlike Lua, Luan converts all concatenation operands to strings. | 199 <p>Unlike Lua, Luan converts all concatenation operands to strings. |
199 | 200 |
201 <h4 heading><a name="constructors">Table Constructors</a></h4> | |
202 | |
203 <p>Unlike Lua, Luan considers an <b>end_of_line</b> to be a field separator in a table constructor.</p> | |
204 | |
200 <h4 heading><a name="fn_calls">Function Calls</a></h4> | 205 <h4 heading><a name="fn_calls">Function Calls</a></h4> |
201 | 206 |
202 <p>Luan does not support Lua's <code>v:name(args)</code> style object-oriented function call. Object oriented programming is done in Luan using closures, so this feature is not needed.</p> | 207 <p>Luan does not support Lua's <code>v:name(args)</code> style object-oriented function call. Object oriented programming is done in Luan using closures, so this feature is not needed.</p> |
203 | 208 |
204 <p>Luan doesn't support <em>proper tail calls</em>. Because Java doesn't support this cleanly, this was left out.</p> | 209 <p>Luan doesn't support <em>proper tail calls</em>. Because Java doesn't support this cleanly, this was left out.</p> |