diff --git a/README.md b/README.md index 8b926f02..3ab13e46 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (683 total) +## Languages (684 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -393,6 +393,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Lsl](l/lsl.lsl) * [Lua](l/lua.lua) * [Lua Grimex](l/lua_grimex.j) +* [Löve](l/Löve.lua) * [M4](m/m4.m4) * [Maclisp](m/maclisp.lisp) * [Macsyma](m/macsyma.mac) diff --git a/l/Löve.lua b/l/Löve.lua new file mode 100644 index 00000000..cbe23ab2 --- /dev/null +++ b/l/Löve.lua @@ -0,0 +1,3 @@ +function love.draw() + love.graphics.print("Hello World", 400, 300) +end