mirror of
https://github.com/TangentFoxy/Pop.Box.git
synced 2024-12-15 12:44:20 +00:00
a wee bit of work for debug or something
This commit is contained in:
parent
3ec0067799
commit
3870b20e9f
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -4,3 +4,6 @@
|
|||||||
[submodule "lib/middleclass"]
|
[submodule "lib/middleclass"]
|
||||||
path = lib/middleclass
|
path = lib/middleclass
|
||||||
url = https://github.com/kikito/middleclass.git
|
url = https://github.com/kikito/middleclass.git
|
||||||
|
[submodule "lib/inspect.lua"]
|
||||||
|
path = lib/inspect.lua
|
||||||
|
url = https://github.com/kikito/inspect.lua.git
|
||||||
|
3
build.sh
Executable file
3
build.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
moonc ./util.moon ./init.moon ./main.moon ./elements/
|
@ -1,6 +1,7 @@
|
|||||||
file = {
|
file = {
|
||||||
"init.moon",
|
"init.moon",
|
||||||
"elements/element.moon",
|
"elements/element.moon",
|
||||||
|
"elements/window.moon",
|
||||||
"main.moon",
|
"main.moon",
|
||||||
"util.moon",
|
"util.moon",
|
||||||
"Element.luadoc",
|
"Element.luadoc",
|
||||||
|
1
lib/inspect.lua
Submodule
1
lib/inspect.lua
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit a384174649e8429cc3270a46cfacc37acaf6e042
|
3
main.lua
3
main.lua
@ -1,2 +1,3 @@
|
|||||||
local pop = require("")
|
local pop = require("")
|
||||||
return print(pop, pop.elements)
|
local inspect = require("lib/inspect/inspect")
|
||||||
|
print(inspect(pop))
|
||||||
|
@ -5,6 +5,9 @@
|
|||||||
pop = require ""
|
pop = require ""
|
||||||
--- @todo write this!
|
--- @todo write this!
|
||||||
|
|
||||||
print(pop, pop.elements) --NOTE TEMPORARY
|
-- NOTE TEMPORARY
|
||||||
|
|
||||||
|
inspect = require "lib/inspect/inspect"
|
||||||
|
print inspect pop
|
||||||
|
|
||||||
return --this is to prevent default returning of last statement
|
return --this is to prevent default returning of last statement
|
||||||
|
Loading…
Reference in New Issue
Block a user