Created
March 10, 2014 19:13
-
-
Save nddrylliog/9472142 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stack traceback: | |
[C]: in function 'require' | |
[string "assets/lua/lestac/scenes/playground.moon"]:5: in main chunk | |
[C]: in function 'require' | |
[string "assets/lua/lestac/app.moon"]:8: in main chunk | |
[C]: in function 'require' | |
assets/lua/init.lua:27: in main chunk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ooc | |
dye_sprite = require 'dye:dye/sprite' | |
dye_text = require 'dye:dye/text' | |
dye_primitives = require 'dye:dye/primitives' -- not it | |
dye_input = require 'dye:dye/input' | |
chipmunk = require 'chipmunk:chipmunk/Highlevel' -- it | |
cpv = chipmunk.CpUtils.cpv | |
-- dark magic | |
ffi = require 'ffi' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ moonc -X assets/lua/lestac/scenes/playground.moon | egrep '^[0-9]*\s*[^0-9]5:\[' | |
164 5:[ local chipmunk = require('chipmunk:chipmunk/Highlevel') ] >> 8:[ chipmunk = require 'chipmunk:chipmunk/Highlevel' ] | |
$ moonc -X assets/lua/lestac/app.moon | egrep '^[0-9]*\s*[^0-9]8:\[' | |
258 8:[ local playground = require('lestac.scenes.playground') ] >> 14:[ playground = require 'lestac.scenes.playground' ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment