Mercurial Hosting > luan
comparison website/src/diff.html @ 1384:f5368cd8c056
remove template expressions and String.concat
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Thu, 15 Aug 2019 14:33:35 -0600 |
| parents | b29eefad2111 |
| children | d9a5405a3102 |
comparison
equal
deleted
inserted
replaced
| 1383:a3d0d1c2ce89 | 1384:f5368cd8c056 |
|---|---|
| 56 <li><a href="#bit">Bitwise Operators</a></li> | 56 <li><a href="#bit">Bitwise Operators</a></li> |
| 57 <li><a href="#logical_ops">Logical Operators</a></li> | 57 <li><a href="#logical_ops">Logical Operators</a></li> |
| 58 <li><a href="#concatenation">Concatenation</a></li> | 58 <li><a href="#concatenation">Concatenation</a></li> |
| 59 <li><a href="#constructors">Table Constructors</a></li> | 59 <li><a href="#constructors">Table Constructors</a></li> |
| 60 <li><a href="#fn_calls">Function Calls</a></li> | 60 <li><a href="#fn_calls">Function Calls</a></li> |
| 61 <li><a href="#template_expr">Template Expressions</a></li> | |
| 62 </ul> | 61 </ul> |
| 63 </li> | 62 </li> |
| 64 </ul> | 63 </ul> |
| 65 </div> | 64 </div> |
| 66 | 65 |
| 207 | 206 |
| 208 <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> |
| 209 | 208 |
| 210 <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> |
| 211 | 210 |
| 212 <h4 heading><a name="template_expr" href="#template_expr">Template Expressions</a></h4> | |
| 213 | |
| 214 <p>Template expressions are a Luan addition that don't exist in Lua. See <a href="manual.html#template_expr">Template Expressions</a> in the Luan Reference Manual.</p> | |
| 215 | |
| 216 </body> | 211 </body> |
| 217 </html> | 212 </html> |
