-
Notifications
You must be signed in to change notification settings - Fork 3
clementfarabet/lua---inline-C
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
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! >