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