This commit is contained in:
Aire-One 2022-01-30 13:53:33 +01:00
commit e18f54c977
4 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

0
build/.gitkeep Normal file
View File

7
src/calculon/init.tl Normal file
View File

@ -0,0 +1,7 @@
local function add(a: number, b: number): number
return a + b
end
return {
add = add
}

4
tlconfig.lua Normal file
View File

@ -0,0 +1,4 @@
return {
build_dir = "build",
source_dir = "src",
}