1
0
Fork 0
mirror of https://github.com/notwa/lips synced 2024-05-01 17:23:24 -07:00

fix example paths

This commit is contained in:
Connor Olding 2016-04-14 07:36:19 -07:00
parent 071169df48
commit 54d0ea0378
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ Even this README is incomplete.
Copy the lips directory to somewhere Lua's `package.path` can find it.
If you're using it locally, you will need to write something like:
```
package.path = package.path.."?/init.lua"
package.path = package.path..";?/init.lua"
```
or `require "lips.init"` directly.

View File

@ -1,3 +1,3 @@
package.path = package.path..";./?/init.lua"
package.path = package.path..";?/init.lua"
local lips = require "lips"
lips('example.asm')