mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
10 lines
199 B
Perl
10 lines
199 B
Perl
terralib.includepath = terralib.terrahome.."/include/terra"
|
|
C = terralib.includecstring [[
|
|
#include "lua.h"
|
|
#include "lauxlib.h"
|
|
]]
|
|
|
|
local s = C.luaL_newstate()
|
|
assert(C.lua_gettop(s) == 0)
|
|
|