diff options
author | Aki <please@ignore.pl> | 2023-12-30 03:02:56 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2023-12-30 03:02:56 +0100 |
commit | b334c0b6bcf520ff20ab2a3192b56304c6ffb306 (patch) | |
tree | 025843b261791ebdb191a357777396e4a06b0d8f /environments_in_lua_5_2_and_beyond.html | |
parent | 178348d704a6186d8ed0485b7909ee9bd5b9ff9d (diff) | |
download | ignore.pl-b334c0b6bcf520ff20ab2a3192b56304c6ffb306.zip ignore.pl-b334c0b6bcf520ff20ab2a3192b56304c6ffb306.tar.gz ignore.pl-b334c0b6bcf520ff20ab2a3192b56304c6ffb306.tar.bz2 |
Date and post headers styles changed
Diffstat (limited to 'environments_in_lua_5_2_and_beyond.html')
-rw-r--r-- | environments_in_lua_5_2_and_beyond.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/environments_in_lua_5_2_and_beyond.html b/environments_in_lua_5_2_and_beyond.html index ee2e922..3c6469c 100644 --- a/environments_in_lua_5_2_and_beyond.html +++ b/environments_in_lua_5_2_and_beyond.html @@ -10,11 +10,13 @@ <title>Environments in Lua 5.2 and Beyond</title> -<nav><p><a href="https://ignore.pl">ignore.pl</a></p></nav> +<header> +<nav><a href="https://ignore.pl">ignore.pl</a></nav> +<time>4 July 2020</time> +<h1>Environments in Lua 5.2 and Beyond</h1> +</header> <article> -<h1>Environments in Lua 5.2 and Beyond</h1> -<p class="subtitle">Published on 2020-07-04 20:39:00+02:00 <p>Environments are a way of dealing with various problems. Or creating them entirely on your own. Primarily, they are used to isolate a selected part of a program. As Lua is meant to be used as an embedded language, you may find yourself wanting to separate user created addons from more internal scripts. In short: sandboxing and overall security. |