Added Löve (#824)

Co-authored-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Elijah P 2020-10-05 20:22:16 -07:00 committed by GitHub
parent 6a2a256cb5
commit bf2ba45d4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -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! Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project!
<!--Languages start--> <!--Languages start-->
## Languages (683 total) ## Languages (684 total)
* [05Ab1E](%23/05AB1E) * [05Ab1E](%23/05AB1E)
* [0815](%23/0815.0815) * [0815](%23/0815.0815)
@ -393,6 +393,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib
* [Lsl](l/lsl.lsl) * [Lsl](l/lsl.lsl)
* [Lua](l/lua.lua) * [Lua](l/lua.lua)
* [Lua Grimex](l/lua_grimex.j) * [Lua Grimex](l/lua_grimex.j)
* [Löve](l/Löve.lua)
* [M4](m/m4.m4) * [M4](m/m4.m4)
* [Maclisp](m/maclisp.lisp) * [Maclisp](m/maclisp.lisp)
* [Macsyma](m/macsyma.mac) * [Macsyma](m/macsyma.mac)

3
l/Löve.lua Normal file
View File

@ -0,0 +1,3 @@
function love.draw()
love.graphics.print("Hello World", 400, 300)
end