blob: 8ac5f862acb34800a13935662672aeb61a1eea6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* jittest.c: Basic test for libluajit
*
* Copyright (C) 2014 Peter Breitenlohner <tex-live@tug.org>
* You may freely use, modify and/or distribute this file.
*/
#include <stdio.h>
#include <luajit.h>
int main (int argc, char **argv)
{
printf ("%s: Compiled with %s (%s)\n",
argv[0], LUAJIT_VERSION, LUA_VERSION);
return 0;
}
|