summaryrefslogtreecommitdiff
path: root/environments_in_lua_5_2_and_beyond.html
diff options
context:
space:
mode:
Diffstat (limited to 'environments_in_lua_5_2_and_beyond.html')
-rw-r--r--environments_in_lua_5_2_and_beyond.html8
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.