Mercurial Hosting > luan
diff website/src/manual.html.luan @ 1827:50e570b598b2
security
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 15 Sep 2024 10:36:46 -0600 |
parents | d3e6c7f64559 |
children |
line wrap: on
line diff
--- a/website/src/manual.html.luan Sat Aug 24 21:36:47 2024 -0600 +++ b/website/src/manual.html.luan Sun Sep 15 10:36:46 2024 -0600 @@ -15,7 +15,7 @@ content = function() %> <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. +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> @@ -161,7 +161,7 @@ content = function() %> <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> <p> @@ -1176,7 +1176,7 @@ title = "Template Statements" content = function() %> -<p>Template statements provide the full equivalent of <a href="http://en.wikipedia.org/wiki/JavaServer_Pages">JSP</a> but in a general way. Template statements write to standard output. For example:</p> +<p>Template statements provide the full equivalent of <a href="https://en.wikipedia.org/wiki/Jakarta_Server_Pages">JSP</a> but in a general way. Template statements write to standard output. For example:</p> </p> <code block> @@ -2552,7 +2552,7 @@ <code block> function String.digest_message(algorithm,s) - return <a href="http://localhost:8080/manual.html#Binary.to_hex">Binary.to_hex</a>( <a href="http://localhost:8080/manual.html#Binary.digest_message">Binary.digest_message</a>( algorithm, <a href="http://localhost:8080/manual.html#String.to_binary">String.to_binary(s)</a> ) ) + return <a href="/manual.html#Binary.to_hex">Binary.to_hex</a>( <a href="/manual.html#Binary.digest_message">Binary.digest_message</a>( algorithm, <a href="/manual.html#String.to_binary">String.to_binary(s)</a> ) ) end </code> <% @@ -3712,7 +3712,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> <hr>