Mercurial Hosting > luan
diff website/src/manual_old.html.luan @ 1827:50e570b598b2
security
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 15 Sep 2024 10:36:46 -0600 |
parents | 540bf2343078 |
children |
line wrap: on
line diff
--- a/website/src/manual_old.html.luan Sat Aug 24 21:36:47 2024 -0600 +++ b/website/src/manual_old.html.luan Sun Sep 15 10:36:46 2024 -0600 @@ -45,7 +45,7 @@ <p small> Original copyright © 2015 Lua.org, PUC-Rio. Freely available under the terms of the -<a href="http://www.lua.org/license.html">Lua license</a>. +<a href="https://www.lua.org/license.html">Lua license</a>. Modified for Luan. </p> @@ -123,7 +123,7 @@ <h2 heading><a name="intro" href="#intro">Introduction</a></h2> -<p>Luan is a high level programming language based on <a href="http://www.lua.org">Lua</a>. A great strength of Lua is its simplicity and Luan takes this even further, being even simpler than Lua. The goal is to provide a simple programming language for the casual programmer with as few concepts as possible so that one can quickly learn the language and then easily understand any code written in Luan.</p> +<p>Luan is a high level programming language based on <a href="https://www.lua.org/">Lua</a>. A great strength of Lua is its simplicity and Luan takes this even further, being even simpler than Lua. The goal is to provide a simple programming language for the casual programmer with as few concepts as possible so that one can quickly learn the language and then easily understand any code written in Luan.</p> <p>Luan is implemented in Java and is tightly coupled with Java. So it makes a great scripting language for Java programmers.</p> @@ -256,7 +256,7 @@ <h3 heading><a name="env" href="#env">Environments</a></h3> <p> -The environment of a chunk starts with only one local variable: <code><a href="#require">require</a></code>. This function is used to load and access libraries and other modules. All other variables must be added to the environment using <a href="http://localhost:8080/manual.html#local_stmt">local declarations</a>. +The environment of a chunk starts with only one local variable: <code><a href="#require">require</a></code>. This function is used to load and access libraries and other modules. All other variables must be added to the environment using <a href="/manual.html#local_stmt">local declarations</a>. <p> As will be discussed in <a href="#vars">Variables</a> and <a href=#assignment">Assignment</a>,