From a5e261f9b06cf771027e77b13caf0efea9918380 Mon Sep 17 00:00:00 2001 From: yuki Date: Fri, 7 Nov 2025 19:39:20 -0300 Subject: [PATCH] initial commit --- .gitignore | 40 ++++++++++++++++++++++++++++++++++++++++ learns.code-workspace | 8 ++++++++ main.lua | 11 +++++++++++ 3 files changed, 59 insertions(+) create mode 100644 .gitignore create mode 100644 learns.code-workspace create mode 100644 main.lua diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1809889 --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# Compiled Lua sources +luac.out + +# luarocks build files +*.src.rock +*.zip +*.tar.gz + +# Object files +*.o +*.os +*.ko +*.obj +*.elf + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo +*.def +*.exp + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex diff --git a/learns.code-workspace b/learns.code-workspace new file mode 100644 index 0000000..876a149 --- /dev/null +++ b/learns.code-workspace @@ -0,0 +1,8 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": {} +} \ No newline at end of file diff --git a/main.lua b/main.lua new file mode 100644 index 0000000..f67ac48 --- /dev/null +++ b/main.lua @@ -0,0 +1,11 @@ +function love.load() + +end + +function love.update(dt) + +end + +function love.draw() + +end