An Inline C package for Lua
Lua
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
CMakeLists.txt
README.txt
init.lua
inline-c-1.0-0.rockspec

README.txt

DEPENDENCIES:
Torch7 (www.torch.ch)

INSTALL:
$ torch-rocks install inline-c

USE:
$ torch
> require 'inline'
> f = inline.load [[
    prinf("Hello, from C!\n");
]]
> f()
Hello, from C!
>