aboutsummaryrefslogtreecommitdiff
path: root/share/library/Logical/and.lua
diff options
context:
space:
mode:
Diffstat (limited to 'share/library/Logical/and.lua')
-rw-r--r--share/library/Logical/and.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/library/Logical/and.lua b/share/library/Logical/and.lua
index 57f7325..c169075 100644
--- a/share/library/Logical/and.lua
+++ b/share/library/Logical/and.lua
@@ -1,18 +1,18 @@
-- Symbol name
-names =
+local names =
{
en = "AND",
cs = "AND"
}
-- Render area in base units (X1, Y1, X2, Y2)
-area = {-4, -2, 5, 2}
+local area = {-4, -2, 5, 2}
-- Terminals
-terminals = {{-4, -1}, {-4, 1}, {5, 0}}
+local terminals = {{-4, -1}, {-4, 1}, {5, 0}}
-- Rendering
-render = function (cr)
+local render = function (cr)
-- The main shape
cr.move_to (-2, -2)
cr.line_to (1, -2)