-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some additional testing to the test app
- Loading branch information
1 parent
799f42d
commit 9a1c585
Showing
12 changed files
with
113 additions
and
20 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@ECHO OFF | ||
luac53.exe -o compiledLua_d.53.luac compiledLua.lua | ||
luac53.exe -s -o compiledLua.53.luac compiledLua.lua | ||
|
||
luac54.exe -o compiledLua_d.54.luac compiledLua.lua | ||
luac54.exe -s -o compiledLua.54.luac compiledLua.lua |
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--lua5.4 | ||
-- compiledLua.lua | ||
|
||
function TestPrint(val) | ||
print('Hello World from a compiles script running in ' .. LUA_RELEASE .. val) | ||
|
||
print(debug.traceback("Stack trace")) | ||
print("Stack trace end") | ||
end | ||
|
||
function Run(val) | ||
TestPrint(val) | ||
local tmp = 1 + 500 * 99 | ||
print('1 + 500 * 99 = ' .. tmp) | ||
end |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--lua 5.3 | ||
--lua 5.4 | ||
-- test.lua | ||
|
||
function Run(val) | ||
|
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
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